Files
asyncio-mongo_tailablecursor/examples/insert.py
Don Brown ae154dbc72 Initial commit
* Examples work
* setup.py kinda updasted
* Fork of txmongo but with new pymongo embedded
2014-01-24 16:19:17 -07:00

21 lines
516 B
Python

#!/usr/bin/env python
# coding: utf-8
import time
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 some data
for x in range(10000):
result = yield from test.insert({"something":x*time.time()}, safe=True)
print(result)
if __name__ == '__main__':
asyncio.get_event_loop().run_until_complete(example())