Skip to main content

manage.py for Flask

Project description

Mlask brings a bit of django like structure to Flask apps.

Installation:

pip install mlask

Create your first app:

To create the skeleton run:

mlask-admin.py startapp your_apps_name

This command will create a folder named your_apps_name with the following files:

  • manage.py

  • config.py

  • tests.py

  • views.py

For the “hello world” examples check “views.py” and “tests.py”.

When you’re ok with your first app, start the testing server by running:

python manage.py runserver

Then run the tests I’m sure you’ve written:

python manage.py test

Edit “config.py” to change server settings, add aditional modules to your app and to define your own configuration. All uppercase variables from “config.py” are accessible from “app.config” module. More on Flask configuration: flask.pocoo.org/docs/config/.

And that’s mostly it. For full Flask documentation visit flask.pocoo.org/docs/api/.

All built in commands:

runserver       Starts testing server
rungunicorn     Starts Gunicorn server
shell           Starts interactive shell with defined app
syncdb          Creates all tables defined by SQLAlchemy declarative
test            Runs all tests in "config.TEST_MODULES"
startapp        Creates an app direcory structure for the given app name in the current directory

Define your own command:

Create a file mycommands.py with the following content:

from mlask.management.commands import BaseCommand

class ExampleCommand(BaseCommand):
    __command_name__ = 'example' #optional
    __help__ = 'Short help' #optional

    def update_parser(self, parser):
        # Define rules for parsing the input.
        # Check argparse for full documentation.

        parser.add_argument('text', help="Text to print")

    def run(self, options):
        print options.text

Add “your_apps_name.mycommands” module to config.py “MODULES” and test it out by running:

python manage.py example "Hello"

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

Mlask-0.2.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file Mlask-0.2.tar.gz.

File metadata

  • Download URL: Mlask-0.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Mlask-0.2.tar.gz
Algorithm Hash digest
SHA256 aa41c0311e97dc83fca7a68b306645ff2e635a25d073db32181b290f3b26994f
MD5 0c410964492f2c8accb418c6431d93e7
BLAKE2b-256 c1cb7100d24a2617e0e0879f4b57eaa704827e5775177f27b76f78934ab7a943

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page