* Examples work * setup.py kinda updasted * Fork of txmongo but with new pymongo embedded
23 lines
569 B
Python
23 lines
569 B
Python
#!/usr/bin/env python
|
|
# coding: utf-8
|
|
import asyncio
|
|
|
|
import asyncio_mongo
|
|
|
|
@asyncio.coroutine
|
|
def example():
|
|
mongo = yield from asyncio_mongo.Connection.create('localhost', 27017)
|
|
|
|
foo = mongo.foo # `foo` database
|
|
test = foo.test # `test` collection
|
|
|
|
# insert
|
|
yield from test.insert({"foo":"bar", "name":"bla"}, safe=True)
|
|
|
|
# update
|
|
result = yield from test.update({"foo":"bar"}, {"$set": {"name":"john doe"}}, safe=True)
|
|
print("result:", result)
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.get_event_loop().run_until_complete(example())
|