Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teaishealthy/amongo
A natively asynchronous MongoDB driver for Python.
https://github.com/teaishealthy/amongo
mongodb mongodb-driver pyhton3 python
Last synced: about 1 month ago
JSON representation
A natively asynchronous MongoDB driver for Python.
- Host: GitHub
- URL: https://github.com/teaishealthy/amongo
- Owner: teaishealthy
- Created: 2023-07-25T21:25:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-30T16:16:03.000Z (8 months ago)
- Last Synced: 2024-05-21T12:17:50.605Z (6 months ago)
- Topics: mongodb, mongodb-driver, pyhton3, python
- Language: Python
- Homepage:
- Size: 80.1 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# amongo
A natively asynchronous MongoDB driver for Python.
As always, this is a work in progress. The API and name are not stable and will change.
Name suggestions are welcome 😊## Installation
```bash
pip install git+github.com/teaishealthy/amongo.git
```## Usage
```python
import asyncio
from amongo import Connectionasync def main():
conn = Connection('mongodb://localhost:27017/test')
await conn.coll('test').insert_one({'test': 'test'})
```