# TableMongo. A MongoDB ORM
Contributers · [Hunter Larco](http://hunterlarco.com)
> TableMongo syntax emulates Google's Python BigTable ORM, making it easier to transition from Google Cloud Platform to a MongoDB based systems.
## Example
```python
import TableMongo as db
class User(db.Model):
email = db.StringProperty()
password = db.StringProperty()
favourite_things = db.StringProperty(multiple=True)
User(
email='john@doe.com',
password='p@ssword',
favourite_things=['apples', 'pie']
).save()
users = User.query(User.email == 'john@doe.com')
```
## Installation
Installation is super friendly using `pip`
```
$ pip install TableMongo
```
## Documentation
* [Quickstart](./Documentation/quickstart.md)
Contributers · [Hunter Larco](http://hunterlarco.com)
> TableMongo syntax emulates Google's Python BigTable ORM, making it easier to transition from Google Cloud Platform to a MongoDB based systems.
## Example
```python
import TableMongo as db
class User(db.Model):
email = db.StringProperty()
password = db.StringProperty()
favourite_things = db.StringProperty(multiple=True)
User(
email='john@doe.com',
password='p@ssword',
favourite_things=['apples', 'pie']
).save()
users = User.query(User.email == 'john@doe.com')
```
## Installation
Installation is super friendly using `pip`
```
$ pip install TableMongo
```
## Documentation
* [Quickstart](./Documentation/quickstart.md)
Release files for TableMongo 1.0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| TableMongo-1.0.3.tar.gz | 11.9 kB | Details |
Release files / TableMongo-1.0.3.tar.gz
| Download URL | TableMongo-1.0.3.tar.gz |
|---|---|
| Size | 11.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f55ba9a289cfa9d987327162e33c5114bd9c2cfd5b13392c12ff04bea3ceba71
|
|
BLAKE2b-256 checksum How to use checksums |
d0202624b4b0f7b752d4983816383c17b1944f12ab5234a62f641c205313ce6b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |