Skip to main content

MongoDB support for Muffin framework.

Project description

Muffin-Mongo – MongoDB support for Muffin framework.

Tests Status PYPI Version

Requirements

  • python >= 3.7

Installation

Muffin-Mongo should be installed using pip:

pip install muffin-mongo

Usage

Setup the plugin and connect it into your app:

from muffin import Application
from muffin_mongo import Plugin as Mongo

# Create Muffin Application
app = Application('example')

# Initialize the plugin
# As alternative: db = DB(app, **options)
mongo = Mongo(db_url='mongodb://localhost:27017', database='db_name')
mongo.setup(app)

That’s it now you are able to use the plugin inside your views:

@app.route('/items', methods=['GET'])
async def get_items(request):
    """Return a JSON with items from the database."""
    documents = await mongo.items.find().sort('key').to_list(100)
    return [dict(dd.items(), _id=str(dd['_id'])) for dd in documents]

@app.route('/items', methods=['POST'])
async def insert_item(request):
    """Store items from JSON into database. Return ids."""
    data = await request.data()  # parse formdata/json from the request
    res = await mongo.items.insert_many(data)
    return [str(key) for key in res.inserted_ids]

Configuration options

Name

Default value

Desctiption

db_url

"mongodb://localhost:27017"

A mongo connection URL

database

None

A database name (optional)

You are able to provide the options when you are initiliazing the plugin:

mongo.setup(app, db_url='mongodb://localhost:27017')

Or setup it from Muffin.Application configuration using the MONGO_ prefix:

MONGO_DB_URL = 'mongodb://localhost:27017'

Muffin.Application configuration options are case insensitive

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-mongo/issues

Contributing

Development of Muffin-Mongo happens at: https://github.com/klen/muffin-mongo

Contributors

  • klen (Kirill Klenov)

License

Licensed under a MIT license.

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

muffin-mongo-0.3.5.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

muffin_mongo-0.3.5-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file muffin-mongo-0.3.5.tar.gz.

File metadata

  • Download URL: muffin-mongo-0.3.5.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for muffin-mongo-0.3.5.tar.gz
Algorithm Hash digest
SHA256 af3d1336013309bc766a6fea19bb590bdd2e5ac2f9c6ca46b55c819eea132db2
MD5 d4a55d4b42070942047e34a51e91c2a9
BLAKE2b-256 a5a49eb4415ad67d882071554af329fa21cd79182f99ca20a25e63326b17f2cd

See more details on using hashes here.

File details

Details for the file muffin_mongo-0.3.5-py3-none-any.whl.

File metadata

  • Download URL: muffin_mongo-0.3.5-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for muffin_mongo-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 70e4c92227abe44cb57132f953b5e45fc215791eb405342c16e5a27fae146eb4
MD5 30b65857504f6cd22c874db861488e79
BLAKE2b-256 e09e3fc68e120506d9ff1c0b7dd2600c3c7c8af62d5b212a2ba944f14d0566ae

See more details on using hashes here.

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