Skip to main content

A Quart auto importer that allows your Quart apps to grow big.

Project description

Quart-Imp

PyPI version License black

pip install quart-imp

What is Quart-Imp?

Quart-Imp's main purpose is to help simplify the importing of blueprints, resources, and models. It has a few extra features built in to help with securing pages and password authentication.

Note

Quart-Flask-Patch is required to use Quart-Imp.

Generate a Quart app

quart-imp init

Example

project/
└── app/
    ├── blueprints/
    │   └── www/...
    ├── extensions/
    │   └── __init__.py
    ├── resources/
    │   ├── static/...
    │   ├── templates/...
    │   └── routes.py
    └── __init__.py

# app/extensions/__init__.py

import quart_flask_patch
from flask_sqlalchemy import SQLAlchemy

from quart_imp import Imp

_ = quart_flask_patch

imp = Imp()
db = SQLAlchemy()

# app/__init__.py

from quart import Quart

from app.extensions import imp, db


def create_app():
    app = Quart(__name__, static_url_path="/")

    imp.init_app(app)
    imp.import_app_resources(
        files_to_import=["*"],
        folders_to_import=["*"]
    )
    imp.import_blueprints("blueprints")
    imp.import_models("models")

    db.init_app(app)

    @app.before_serving
    async def create_tables():
        db.create_all()

    return app

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

quart_imp-0.1.2.tar.gz (65.3 kB view hashes)

Uploaded Source

Built Distribution

quart_imp-0.1.2-py3-none-any.whl (76.9 kB view hashes)

Uploaded Python 3

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