{"id":14974193,"url":"https://github.com/gabrielfalcao/chemist","last_synced_at":"2025-10-07T10:30:18.518Z","repository":{"id":66789267,"uuid":"111355745","full_name":"gabrielfalcao/chemist","owner":"gabrielfalcao","description":"Simple, flexible and testable active-record powered by SQLAlchemy - supports seamless encryption of fields through PyNaCL","archived":false,"fork":false,"pushed_at":"2024-07-27T02:46:10.000Z","size":215,"stargazers_count":4,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"chemist","last_synced_at":"2025-01-17T03:51:14.038Z","etag":null,"topics":["active-record","flask","functional-testing","mysql","mysql-orm","postgresql","psycopg2","python","sql","sqlalchemy","unit-testing"],"latest_commit_sha":null,"homepage":"https://chemist.readthedocs.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gabrielfalcao.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-20T03:10:50.000Z","updated_at":"2022-07-29T18:05:06.000Z","dependencies_parsed_at":"2024-09-23T15:00:47.939Z","dependency_job_id":"6b3a2a6b-4c38-4091-8656-a1b8f4825dda","html_url":"https://github.com/gabrielfalcao/chemist","commit_stats":{"total_commits":121,"total_committers":1,"mean_commits":121.0,"dds":0.0,"last_synced_commit":"c4f7ce1dd3980a303cf2ced0ec0c6d37d4891c4c"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfalcao%2Fchemist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfalcao%2Fchemist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfalcao%2Fchemist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrielfalcao%2Fchemist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabrielfalcao","download_url":"https://codeload.github.com/gabrielfalcao/chemist/tar.gz/refs/heads/chemist","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235614253,"owners_count":19018405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["active-record","flask","functional-testing","mysql","mysql-orm","postgresql","psycopg2","python","sql","sqlalchemy","unit-testing"],"created_at":"2024-09-24T13:50:08.182Z","updated_at":"2025-10-07T10:30:17.941Z","avatar_url":"https://github.com/gabrielfalcao.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. Flask Chemist documentation master file, created by\n   sphinx-quickstart on Sun Nov 19 22:16:39 2017.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nChemist\n=======\n\nA simple, flexible and testable active-record powered by SQLAlchemy.\n\n.. image:: https://readthedocs.org/projects/chemist/badge/?version=latest\n   :target: http://chemist.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n.. image:: https://travis-ci.org/gabrielfalcao/chemist.svg?branch=master\n    :target: https://travis-ci.org/gabrielfalcao/chemist\n.. |PyPI python versions| image:: https://img.shields.io/pypi/pyversions/chemist.svg\n   :target: https://pypi.python.org/pypi/chemist\n.. |Join the chat at https://gitter.im/gabrielfalcao/chemist| image:: https://badges.gitter.im/gabrielfalcao/chemist.svg\n   :target: https://gitter.im/gabrielfalcao/chemist?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge\n\n\n\nInstall\n-------\n\n.. code:: bash\n\n   pip install chemist\n\n\nDocumentation\n-------------\n\n`chemist.readthedocs.io \u003chttps://chemist.readthedocs.io/en/latest/\u003e`_\n\n\nBasic Usage\n-----------\n\n\n.. code:: python\n\n    from chemist import (\n        Model, db, DefaultTable\n        set_default_uri,\n    )\n\n    engine = set_default_uri('sqlite:///example.db')\n\n    class BlogPost(Model):\n         table = DefaultTable('blog_post'\n             db.Column('id', db.Integer, primary_key=True),\n             db.Column('title', db.Unicode(200), nullable=False),\n             db.Column('content', db.UnicodeText, nullable=False),\n         )\n\n    post1 = BlogPost.create(title='Hello World', content='\\n'.join([\n        'Introduction...',\n        'Supporting Theory 1...',\n        'Supporting Theory 2...',\n        'Supporting Theory 3...',\n        'Conclusion',\n    ]))\n\n\n    for post in BlogPost.all():\n        print(post.title, post.id)\n\n\nExamples\n--------\n\n1. `flask app \u003chttps://github.com/gabrielfalcao/chemist/blob/master/examples/flask-app.py\u003e`_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielfalcao%2Fchemist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabrielfalcao%2Fchemist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrielfalcao%2Fchemist/lists"}