Skip to main content

An ORM-like Pymongo extension that adds json schema validation, index management and intermediate data manipulators

Project description

Pymongoext

Pymongoext is an ORM-like Pymongo extension that adds json schema validation, index management and intermediate data manipulators. Pymongoext simplifies working with MongoDB, while maintaining a syntax very identical to Pymongo.

pymongoext.Model is simply a wrapper around pymongo.Collection. As such, all of the pymongo.Collection API is exposed through pymongoext.Model. If you don’t find what you want in the pymongoext.Model API, please take a look at pymongo’s Collection documentation.

Documentation is available at https://pymongoext.readthedocs.io

The code is hosted on Github https://github.com/musyoka-morris/pymongoext

Features

  • schema validation (which uses MongoDB JSON Schema validation)

  • schema-less feature

  • nested and complex schema declaration

  • untyped field support

  • required fields validation

  • default values

  • custom validators

  • operator for validation (OneOf, AllOf, AnyOf, Not)

  • indexes management

  • data manipulators (transform documents before saving and after retrieval)

  • Easy to create custom data manipulators

  • object-like results instead of dict-like. (i.e. foo.bar instead of foo[‘bar’])

  • No custom-query language or API to learn (If you know how to use pymongo, you already know how to use pymongoext)

Supported MongoDB & Python Versions

Pymongoext uses JSON Schema for validation and thus we only support MongoDB v3.6+.

Pymongoext supports python v3+. Support for python v2.7 is currently under consideration.

Installation

We recommend the use of virtualenv and of pip. You can then use pip install -U pymongoext.

You may also have setuptools and thus you can use easy_install -U pymongoext. Another option is pipenv. You can then use pipenv install pymongoext to both create the virtual environment and install the package.

Alternatively, you can download the source from GitHub and run python setup.py install.

Examples

Some simple examples of what pymongoext code looks like:

from datetime import datetime
from pymongo import MongoClient, IndexModel
from pymongoext import *


class User(Model):
    @classmethod
    def db(cls):
        return MongoClient()['my_database_name']

    __schema__ = DictField(dict(
        email=StringField(required=True),
        name=StringField(required=True),
        yob=IntField(minimum=1900, maximum=2019)
    ))

    __indexes__ = [IndexModel('email', unique=True), 'name']

    class AgeManipulator(Manipulator):
        def transform_outgoing(self, doc, model):
            doc['age'] = datetime.now().year - doc['yob']
            return doc


# Create a user
>>> User.insert_one({'email': 'jane@gmail.com', 'name': 'Jane Doe', 'yob': 1990})

# Fetch one user
>>> user = User.find_one()

# Print the users age
>>> print(user.age)

Contributing

We welcome contributions! See the Contribution guidelines

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongoext-2.3.3.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pymongoext-2.3.3-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file pymongoext-2.3.3.tar.gz.

File metadata

  • Download URL: pymongoext-2.3.3.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for pymongoext-2.3.3.tar.gz
Algorithm Hash digest
SHA256 e409d5cb6ff7a3d2c9d76b510cef7ed9be4c6d188af981ca9f3dce4048668ae8
MD5 247676d4eabe7a441b327f49daa8612a
BLAKE2b-256 09e5510d35effb6a5a4f418619d35889747562383fbb9a50d821da7e8fc438a8

See more details on using hashes here.

File details

Details for the file pymongoext-2.3.3-py3-none-any.whl.

File metadata

  • Download URL: pymongoext-2.3.3-py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for pymongoext-2.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 da17eeedeae97079a8238ab52f6b10daac5eb1a6d952f45d178b2242da9cf2a8
MD5 71610d9bfdc634562b574b1175f7240d
BLAKE2b-256 c2e34f7025f7594f6f0a20acaa4831120e854b0fbbf592ff07baf6fcd5e65f4e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page