Info: | See PyMongoLab documentation site for more information. See GitHub repository for the latest source. |
---|---|
Author: | Jorge Puente Sarrín <puentesarrin@gmail.com> |
PyMongoLab is a Python client library that contains tools for accessing to MongoLab databases via the MongoLab REST API using a similar syntax to PyMongo. Useful in cases where network barriers (firewalls, etc.) prevent use of the standard MongoDB driver.
>>> from pymongolab import MongoClient
>>> con = MongoClient("MongoLabAPIKey")
>>> db = con.database
>>> col = db.collection.find()
>>> list(col)
[{u'_id': ObjectId('50243d38e4b00c3b3e75fc94'), u'foo': u'bar', u'tld': u'com'},
{u'_id': ObjectId('50004d646cf431171ed53846'), u'foo': u'bar', u'tld': u'org'}]
You can to use pip to install PyMongoLab:
$ pip install pymongolab
Or using last source:
$ pip install git+git://github.com/puentesarrin/pymongolab.git
Sphinx must be installed to generate the documentation. Documentation can be generated by running python setup.py doc.