A Quart auto importer that allows your Quart apps to grow big.
Project description
Quart-Imp
pip install quart-imp
What is Quart-Imp?
Quart-Imp's main purpose is to help simplify the importing of blueprints, and resources. It has a few extra features built in to help with securing pages and password authentication.
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
from quart_imp import Imp
imp = Imp()
# app/__init__.py
from quart import Quart
from app.extensions import imp
def create_app():
app = Quart(__name__, static_url_path="/")
imp.init_app(app)
imp.import_app_resources()
imp.import_blueprints("blueprints")
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-1.0.0.tar.gz
(50.8 kB
view details)
Built Distribution
quart_imp-1.0.0-py3-none-any.whl
(63.3 kB
view details)
File details
Details for the file quart_imp-1.0.0.tar.gz
.
File metadata
- Download URL: quart_imp-1.0.0.tar.gz
- Upload date:
- Size: 50.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc331169d3c9f762b0487e3715998e564cedbd71e17a750893b6453fafdff49c |
|
MD5 | f518d6f1a06baebede440229db3ffe02 |
|
BLAKE2b-256 | 7445a3b2c6dbd600ec873c491a552eb4babbf60119a221ccd37854f568ab16d8 |
File details
Details for the file quart_imp-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: quart_imp-1.0.0-py3-none-any.whl
- Upload date:
- Size: 63.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4f929b641b4ba2281850d0803b1cd64497de5471676fc09d5f622e11496bd90 |
|
MD5 | 771622a58a170b42bccbb5ef2b1e102a |
|
BLAKE2b-256 | 3f0cff90671fbc534e94ae2388f7dba4d0647573a0aaed7946e39910d46a3507 |