Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.8 KB

README.rst

File metadata and controls

57 lines (42 loc) · 1.8 KB

PyMongoLab

Latest PyPI version Number of PyPI downloads
Info:See PyMongoLab documentation site for more information. See GitHub repository for the latest source.
Author:Jorge Puente Sarrín <[email protected]>

About

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

Installation

You can to use pip to install PyMongoLab:

$ pip install pymongolab

Or using last source:

$ pip install git+git://github.com/puentesarrin/pymongolab.git

Documentation

Sphinx must be installed to generate the documentation. Documentation can be generated by running python setup.py doc.