├── .gitignore ├── .travis.yml ├── ChangeLog ├── LICENSE ├── MANIFEST ├── README.md ├── asyncmongo ├── __init__.py ├── asyncjobs.py ├── backends │ ├── __init__.py │ ├── glib2_backend.py │ ├── glib3_backend.py │ └── tornado_backend.py ├── client.py ├── connection.py ├── cursor.py ├── errors.py ├── helpers.py ├── message.py └── pool.py ├── setup.py └── test ├── __init__.py ├── sample_app ├── README ├── sample_app.py ├── sample_app2.py └── settings.py ├── test_authentication.py ├── test_command.py ├── test_connection.py ├── test_duplicate_insert.py ├── test_insert_delete.py ├── test_pooled_db.py ├── test_query.py ├── test_replica_set.py ├── test_safe_updates.py ├── test_shunt.py ├── test_slave_only.py ├── testgtk2 └── test.py └── testgtk3 └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build 3 | dist 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/README.md -------------------------------------------------------------------------------- /asyncmongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/__init__.py -------------------------------------------------------------------------------- /asyncmongo/asyncjobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/asyncjobs.py -------------------------------------------------------------------------------- /asyncmongo/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asyncmongo/backends/glib2_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/backends/glib2_backend.py -------------------------------------------------------------------------------- /asyncmongo/backends/glib3_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/backends/glib3_backend.py -------------------------------------------------------------------------------- /asyncmongo/backends/tornado_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/backends/tornado_backend.py -------------------------------------------------------------------------------- /asyncmongo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/client.py -------------------------------------------------------------------------------- /asyncmongo/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/connection.py -------------------------------------------------------------------------------- /asyncmongo/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/cursor.py -------------------------------------------------------------------------------- /asyncmongo/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/errors.py -------------------------------------------------------------------------------- /asyncmongo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/helpers.py -------------------------------------------------------------------------------- /asyncmongo/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/message.py -------------------------------------------------------------------------------- /asyncmongo/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/asyncmongo/pool.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sample_app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/sample_app/README -------------------------------------------------------------------------------- /test/sample_app/sample_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/sample_app/sample_app.py -------------------------------------------------------------------------------- /test/sample_app/sample_app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/sample_app/sample_app2.py -------------------------------------------------------------------------------- /test/sample_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/sample_app/settings.py -------------------------------------------------------------------------------- /test/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_authentication.py -------------------------------------------------------------------------------- /test/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_command.py -------------------------------------------------------------------------------- /test/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_connection.py -------------------------------------------------------------------------------- /test/test_duplicate_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_duplicate_insert.py -------------------------------------------------------------------------------- /test/test_insert_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_insert_delete.py -------------------------------------------------------------------------------- /test/test_pooled_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_pooled_db.py -------------------------------------------------------------------------------- /test/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_query.py -------------------------------------------------------------------------------- /test/test_replica_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_replica_set.py -------------------------------------------------------------------------------- /test/test_safe_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_safe_updates.py -------------------------------------------------------------------------------- /test/test_shunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_shunt.py -------------------------------------------------------------------------------- /test/test_slave_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/test_slave_only.py -------------------------------------------------------------------------------- /test/testgtk2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/testgtk2/test.py -------------------------------------------------------------------------------- /test/testgtk3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/asyncmongo/HEAD/test/testgtk3/test.py --------------------------------------------------------------------------------