Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 466 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 466 Bytes

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

pip install git+github.com/teaishealthy/amongo.git

Usage

import asyncio
from amongo import Connection

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