├── .gitignore ├── LICENSE ├── README.rst ├── example.py ├── flask_aggregator.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/README.rst -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/example.py -------------------------------------------------------------------------------- /flask_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/flask_aggregator.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramnes/flask-aggregator/HEAD/setup.py --------------------------------------------------------------------------------