{"id":50432712,"url":"https://github.com/joumaico/sqlite7","last_synced_at":"2026-05-31T15:01:28.412Z","repository":{"id":350254271,"uuid":"1205990791","full_name":"joumaico/sqlite7","owner":"joumaico","description":"A DB-API 2.0 style interface for SQLite databases.","archived":false,"fork":false,"pushed_at":"2026-04-09T16:04:13.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-09T16:05:22.179Z","etag":null,"topics":["sqlite"],"latest_commit_sha":null,"homepage":"https://sqlite7.readthedocs.io","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/joumaico.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-09T13:21:50.000Z","updated_at":"2026-04-09T16:04:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/joumaico/sqlite7","commit_stats":null,"previous_names":["joumaico/sqlite7"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/joumaico/sqlite7","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joumaico%2Fsqlite7","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joumaico%2Fsqlite7/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joumaico%2Fsqlite7/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joumaico%2Fsqlite7/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joumaico","download_url":"https://codeload.github.com/joumaico/sqlite7/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joumaico%2Fsqlite7/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33735663,"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-05-31T02:00:06.040Z","response_time":95,"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":["sqlite"],"created_at":"2026-05-31T15:01:26.417Z","updated_at":"2026-05-31T15:01:28.400Z","avatar_url":"https://github.com/joumaico.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SQLite7\n\nSQLite7 is a DB-API 2.0 style interface for SQLite databases backed directly by the SQLite C library, with both synchronous and asynchronous APIs.\n\n## Installation\n\n```bash\npip install sqlite7\n```\n\n**Requires:** Python 3.11+\n\n## Quick Example\n\n```python\nfrom sqlite7 import connect\n\nwith open_db(\":memory:\") as db:\n    db.script(\n        '''\n        CREATE TABLE users (\n            id INTEGER PRIMARY KEY,\n            email TEXT UNIQUE NOT NULL,\n            name TEXT NOT NULL,\n            age INTEGER NOT NULL\n        );\n        '''\n    )\n\n    users = db.table(\"users\")\n    users.insert({\"email\": \"ada@example.com\", \"name\": \"Ada\", \"age\": 36})\n    users.insert({\"email\": \"grace@example.com\", \"name\": \"Grace\", \"age\": 37})\n\n    rows = users.select(\n        columns=[\"id\", \"name\"],\n        where=\"age \u003e= ?\",\n        params=[36],\n        order_by=\"id ASC\",\n        limit=10,\n        offset=0,\n    )\n    print(rows)\n```\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoumaico%2Fsqlite7","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoumaico%2Fsqlite7","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoumaico%2Fsqlite7/lists"}