Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 Connection

async def main():
conn = Connection('mongodb://localhost:27017/test')
await conn.coll('test').insert_one({'test': 'test'})
```