Skip to main content

Mongo repo to use with Py Easy REST

Project description

Lint Build and Test Upload Package PyPI version

py-easy-rest-mongo-motor-repo

Mongo repo to use with py-easy-rest

Getting Started

How to install

pip install py-easy-rest py-easy-rest-mongo-motor-repo

Integrating with your py-easy-rest app

Mongo Repository

#main.py
from motor.motor_asyncio import AsyncIOMotorClient

from py_easy_rest import PYRSanicAppBuilder
from py_easy_rest.service import PYRService
from py_easy_rest_mongo_motor_repo import PYRMongoRepo


config = {
    "name": "Project Name",
    "schemas": [{
        "name": "Mock",
        "slug": "mock",
        "properties": {
            "name": {"type": "string"},
            "age": {"type": "integer"},
        },
        "required": ["name"],
    }]
}

repo = PYRMongoRepo()

service = PYRService(api_config_mock, repo=repo)
sanic_app = PYRSanicAppBuilder.build(api_config_mock, service)

@sanic_app.listener('before_server_start')
def init(app, loop):
    mongo_db_instance = AsyncIOMotorClient("mongodb://localhost:27017/db")
    db = mongo_db_instance.get_default_database()
    repo.set_db_connection(db)


sanic_app.run(
    host='0.0.0.0',
    port=8000,
    debug=True,
    auto_reload=True,
)

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

py-easy-rest-mongo-motor-repo-0.1.5.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

Supported by

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