Skip to content

A natively asynchronous MongoDB driver for Python.

Notifications You must be signed in to change notification settings

teaishealthy/amongo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'})

About

A natively asynchronous MongoDB driver for Python.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages