All Projects → marioidival → pyramid_mongoengine

marioidival / pyramid_mongoengine

Licence: MIT license
Mongoengine Pyramid extension

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pyramid mongoengine

Swapface
Seamless face swapping
Stars: ✭ 22 (+69.23%)
Mutual labels:  pyramid
Cookiecutter Pyramid Talk Python Starter
An opinionated Cookiecutter template for creating Pyramid web applications starting way further down the development chain. This cookiecutter template will create a new Pyramid web application with email, sqlalchemy, rollbar, and way more integrated.
Stars: ✭ 64 (+392.31%)
Mutual labels:  pyramid
Zappa
Serverless Python
Stars: ✭ 11,859 (+91123.08%)
Mutual labels:  pyramid
Zope.sqlalchemy
Integration of SQLAlchemy with transaction management
Stars: ✭ 30 (+130.77%)
Mutual labels:  pyramid
Pyramid openapi3
Pyramid addon for OpenAPI3 validation of requests and responses.
Stars: ✭ 60 (+361.54%)
Mutual labels:  pyramid
Ziggurat foundations
Framework agnostic set of sqlalchemy classes that make building applications that require permissions an easy task.
Stars: ✭ 67 (+415.38%)
Mutual labels:  pyramid
Serverless Wsgi
Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages
Stars: ✭ 377 (+2800%)
Mutual labels:  pyramid
Pyramid Attention Networks Pytorch
Implementation of Pyramid Attention Networks for Semantic Segmentation.
Stars: ✭ 182 (+1300%)
Mutual labels:  pyramid
Best Of Web Python
🏆 A ranked list of awesome python libraries for web development. Updated weekly.
Stars: ✭ 1,118 (+8500%)
Mutual labels:  pyramid
Mapchete
Tile-based geodata processing using rasterio & Fiona
Stars: ✭ 129 (+892.31%)
Mutual labels:  pyramid
Nefertari
Nefertari is a REST API framework sitting on top of Pyramid and ElasticSearch
Stars: ✭ 52 (+300%)
Mutual labels:  pyramid
Tahrir
Pyramid app for issuing your own Open Badges
Stars: ✭ 57 (+338.46%)
Mutual labels:  pyramid
Data Driven Web Apps With Pyramid And Sqlalchemy
Demos and handouts for Talk Python's Data-Driven Web Apps with Pyramid and SQLAlchemy course
Stars: ✭ 79 (+507.69%)
Mutual labels:  pyramid
Unsonic
Unsonic, the un-Subsonic music server.
Stars: ✭ 20 (+53.85%)
Mutual labels:  pyramid
Lrf Net
Learning Rich Features at High-Speed for Single-Shot Object Detection, ICCV, 2019
Stars: ✭ 160 (+1130.77%)
Mutual labels:  pyramid
Pspnet Keras Tensorflow
TensorFlow implementation of original paper : https://github.com/hszhao/PSPNet
Stars: ✭ 381 (+2830.77%)
Mutual labels:  pyramid
Webargs
A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp.
Stars: ✭ 1,145 (+8707.69%)
Mutual labels:  pyramid
mf-chsdi3
api3.geo.admin.ch source code.
Stars: ✭ 35 (+169.23%)
Mutual labels:  pyramid
Pyrollbar
Error tracking and logging from Python to Rollbar
Stars: ✭ 169 (+1200%)
Mutual labels:  pyramid
Pyramid tutorials
Tutorials for Pyramid
Stars: ✭ 81 (+523.08%)
Mutual labels:  pyramid

Pyramid Mongoengine

pyramid-mongoengine package based in flask-mongoengine

README In Progress

Install

pip install pyramid-mongoengine

Config

Basic setup

if __name__ == "__main__":
    config = Configurator()

    config.include("pyramid_mongoengine")
    config.add_connection_database()

pyramid-mongoengine provides add_connection_database(), he makes a connection with database using data coming from .ini file.

mongo_url = mongodb://my_ip_location_to_mongodb
mongodb_name = "my_db_application"

If theses data not exists in .ini, pyramid-mongoengine use default values

# Default values
mongo_url = mongodb://localhost
mongodb_name = "test"

Creating models

from pyramid_mongoengine import MongoEngine

db = MongoEngine()

class User(db.Document):
    email = db.StringField(required=True)
    username = db.StringField(required=True)

See demo application to examples

Support on Beerpay

Hey dude! Help me out for a couple of 🍻!

Beerpay Beerpay

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].