An open API service indexing awesome lists of open source software.

https://github.com/akafael/flask-sandbox

Flask examples and experiments
https://github.com/akafael/flask-sandbox

flask python

Last synced: about 1 month ago
JSON representation

Flask examples and experiments

Awesome Lists containing this project

README

          

# Python Web Develop with Flask

Guiding myself through the hidden path of [Flask](http://flask.pocoo.org/)

## Requirements

To install and run these examples you need:

* Python 2.7 or 3.3+
* virtualenv (not required if you are using Python 3.4)
* git (only to clone this repository)

## Installation

```
git clone https://github.com/akafael/flask-sandbox/tree/master
cd flask-sandbox
virtualenv venv
. venv/bin/activate
() pip install -r requirements.txt
```

## References

* [Using Virtualenv](https://virtualenv.pypa.io/en/latest/userguide/#usage)
* [Flask Tutorial by TutorialsPoint](https://www.tutorialspoint.com/flask/index.htm)
* [Flask Examples](https://github.com/miguelgrinberg/flask-examples) by @miguelgrinberg
* [PEP8 - Python Style Guide](https://www.python.org/dev/peps/pep-0008/)