No project description provided
Project description
Bottle Manage – Short description.
Requirements
python >= 2.6
Installation
Bottle Manage should be installed using pip:
pip install bottle-manage
Usage
manage.py:
from bottle import Bottle
from bottle_manage import Manage
app = Bottle()
manage = Manage(app)
@manage.shell
def context():
from .models import Partner, Record, db # noqa
ctx = locals()
ctx['app'] = app
ctx['db'] = db.database
return ctx
@manage.command
def db():
""" Initialize the database."""
from peewee_migrate.core import Router
router = Router(
os.path.join(app.config['ROOT_DIR'], 'migrations'), DATABASE=app.config['DATABASE_URI'])
router.run()
@manage.command
def runserver(reloader=False, debug=False, port=5000):
""" Run the application. """
app.run(reloader=reloader, debug=debug, port=port)
if __name__ == '__main__':
manage()
$ ./manage.py --help
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/bottle-manage/issues
Contributing
Development of Bottle Manage happens at: https://github.com/klen/bottle-manage
Contributors
klen (Kirill Klenov)
License
Licensed under a BSD 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bottle-manage-0.2.2.tar.gz.
File metadata
- Download URL: bottle-manage-0.2.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2af090be7d5c2e48624cdeed3e8bba356b9f6e96ee292694d28ecb9a642b956
|
|
| MD5 |
b4931363f0d151eff0fb388b8604b027
|
|
| BLAKE2b-256 |
4f5a04a8a6d7f3385c3c8da9435a7e20182e50bf1897b3a5562d838e32e4fb17
|
File details
Details for the file bottle_manage-0.2.2-py2.py3-none-any.whl.
File metadata
- Download URL: bottle_manage-0.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1d3a0809bdb882b5eabb0519a6fb3c163e0ae767175399d1d0c806b40dc1abb
|
|
| MD5 |
497f3f1267ba773b3d7a946794f7832d
|
|
| BLAKE2b-256 |
2637c7c2cb2ac0538fb598fca095b239a90015c7b6fe8987fcf4fa2a9ad67e0d
|