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
- Host: GitHub
- URL: https://github.com/akafael/flask-sandbox
- Owner: akafael
- Created: 2019-04-19T14:33:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-17T20:02:24.000Z (over 2 years ago)
- Last Synced: 2025-03-23T00:27:01.174Z (over 1 year ago)
- Topics: flask, python
- Language: HTML
- Size: 53.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)