Metadata-Version: 2.1 Name: active-record-mc Version: 0.6 Summary: Simple ORM for basic operations in SQLite databases License: MIT Author: Chris Brown Author-email: chris@marcrisoft.co.uk Requires-Python: >=3.8,<4.0 Classifier: Development Status :: 4 - Beta Classifier: Intended Audience :: End Users/Desktop Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Requires-Dist: PyGObject (>=3.42.0,<4.0.0) Requires-Dist: tomlkit (==0.*) Description-Content-Type: text/markdown This module implements a simple ORM for basic operations in SQLite databases. The module is derived from a working example of the active record pattern created by Chris Mitchell to supplement a talk given at the Oregon Academy of Sciences meeting on January 26, 2011. The original example is published on GitHub as https://github.com/ChrisTM/Active-Record-Example-for-a-Gradebook and the code is understood to be freely available under the MIT license as above. The original code has been modified so that * The column names in the selected table are obtained automatically by introspection of the database. * The primary key column is no longer required to be 'pk'. * Errors are reported via a dialog box. Running gradebookExample.py demonstrates queries equivalent to Chris Mitchell's original tests. More complex usage in conjunction with