Skip to main content

PonyORM for your Flask application

Project description

Latest Version Apache 2.0 STARS

PonyORM for your Flask application.

Installation

pip install flask-pony

Quick start

Read the documentation for the pony-database-facade package.

# app.py

from flask import Flask

from flask_pony import Pony


app = Flask(__name__)
app.config.from_object('configmodule.Config')

pony = Pony(app)

from . import models

pony.connect()
# models.py

from pony.orm import Required

from . import pony


db = pony.db


class Person(db.Entity):
    username = Required(str, 50)
# configmodule.py

class Config(object):
    PONY = {
        'provider': 'mysql',
        'user': 'anyone',
        'password': 'anykey',
        'dbname': 'blog'
    }

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

flask-pony-3.0.1.tar.gz (2.8 kB view hashes)

Uploaded Source

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