{"id":50967667,"url":"https://github.com/dymoo/pyasyncorm","last_synced_at":"2026-06-18T22:02:26.707Z","repository":{"id":214219698,"uuid":"378718965","full_name":"dymoo/pyasyncorm","owner":"dymoo","description":"Async ORM \u0026 query builder for Python","archived":false,"fork":false,"pushed_at":"2021-06-20T19:01:23.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-12-26T18:22:17.314Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dymoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-06-20T18:55:00.000Z","updated_at":"2023-12-26T18:22:18.889Z","dependencies_parsed_at":"2023-12-26T18:36:41.821Z","dependency_job_id":null,"html_url":"https://github.com/dymoo/pyasyncorm","commit_stats":null,"previous_names":["dymoo/pyasyncorm"],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/dymoo/pyasyncorm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dymoo%2Fpyasyncorm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dymoo%2Fpyasyncorm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dymoo%2Fpyasyncorm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dymoo%2Fpyasyncorm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dymoo","download_url":"https://codeload.github.com/dymoo/pyasyncorm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dymoo%2Fpyasyncorm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34508867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-06-18T22:02:25.797Z","updated_at":"2026-06-18T22:02:26.690Z","avatar_url":"https://github.com/dymoo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyasyncorm\n\nAsync ORM for SQL databases with a focus on simplicity, stability and performance.\n\n## Current database support\n\n- PostgreSQL, via asyncpg connector.\n\n## Example code\n\n```python\nimport asyncio\nfrom pyasyncorm.model import Model, Column\nfrom pyasyncorm.connection import Connection\n\nclass User(Model):\n  id = Column('int', primary_key=True)\n  email = Column('text', unique=True)\n  password = Column('text')\n\nasync def main():\n  # Connect and make sure all our models are migrated.\n  conn = Connection()\n  await conn.connect('postgresql://')\n  await conn.migrate([ User ])\n\n  # Create user\n  await User(email='test@mail.com', password='securepassword123').save()\n\nasyncio.run(main())\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdymoo%2Fpyasyncorm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdymoo%2Fpyasyncorm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdymoo%2Fpyasyncorm/lists"}