Skip to main content

No project description provided

Project description

Bottle Manage – Short description.

Build Status Coverals http://img.shields.io/pypi/v/bottle-manage.svg?style=flat-square http://img.shields.io/pypi/dm/bottle-manage.svg?style=flat-square Donate

Docs are available at https://bottle-manage.readthedocs.org/. Pull requests with documentation enhancements and/or fixes are awesome and most welcome.

Requirements

  • python >= 2.6

Installation

Bottle Manage should be installed using pip:

pip install bottle-manage

Usage

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

bottle-manage-0.2.0.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

bottle_manage-0.2.0-py2.py3-none-any.whl (5.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file bottle-manage-0.2.0.tar.gz.

File metadata

File hashes

Hashes for bottle-manage-0.2.0.tar.gz
Algorithm Hash digest
SHA256 42895aae84e787203da69bbc6cb7b8532c52116d4bb5743311a90f3c24f76d0a
MD5 2da926939f30e9d2ce79f4acf469c2ce
BLAKE2b-256 ea319d309cbae1cd6e2a406b523c372c20841932ed0f9f3aadfcf42968cee469

See more details on using hashes here.

File details

Details for the file bottle_manage-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for bottle_manage-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4de44c12d0933ebb57680454df3159efdbcf5c329201d28a503248874b6d5027
MD5 8f33b906c509dfa42fb70e601e8d2f29
BLAKE2b-256 ac8510ae590c5f6051d875716d2e1659fb7395b31a6d224db6e957f2b36d0aac

See more details on using hashes here.

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