nanvel / tornado-boilerplate

Includes project layout, settings, signals, exceptions, ...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tornado project template

Features

Requirements

Requirements per environment.

Modules

Split project into reusable modules.

URLS management

Each module could have its own urls file.

Settings

Settings load sequence:

  • execution args
  • environment variables
  • defaults

Settings definitions must be located in the top of the module __init__.py file they belongs to.

Custom HTTP Error exception

Allows to return json contains error message and code.

Prefilled app.py

Creates application.

Documentation

Creates docs folder.

Signals

QT like observer pattern implementation.

Usage

Virtual environment

virtualenv .env --no-site-packages -p /usr/local/bin/python3.5
source .env/bin/activate
pip install -r requirements/development.txt

Conventions

Imports

Use relative imports for imports from current module.

Imports should be grouped in the following order:

  • standard library imports
  • related third party imports
  • local application/library specific imports

You should put a blank line between each group of imports.

Use __all__ to specify which objects are for usage outside. Than use wildcard imports in __init__.py.

Tests

python -m unittest project.module

About

Includes project layout, settings, signals, exceptions, ...

License:MIT License


Languages

Language:Python 100.0%