https://github.com/zkan/fizzbuzz-flask
FizzBuzz in Flask
https://github.com/zkan/fizzbuzz-flask
fizzbuzz flask python
Last synced: 2 months ago
JSON representation
FizzBuzz in Flask
- Host: GitHub
- URL: https://github.com/zkan/fizzbuzz-flask
- Owner: zkan
- License: mit
- Created: 2017-02-19T13:11:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T06:04:48.000Z (over 9 years ago)
- Last Synced: 2025-10-25T10:28:04.401Z (8 months ago)
- Topics: fizzbuzz, flask, python
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FizzBuzz in Flask
## Getting Started
1. To create a virtual environment with Python 2.7, run `virtualenv -p python2.7 venv`.
2. Activate the virtual environment by `source venv/bin/activate`.
3. Install the required packages by `pip install -r requirements.txt`.
4. Run `python web/app.py` then go to http://0.0.0.0:5000 or http://localhost:5000.
## Readings
* [Flask (A Python Microframework)](http://flask.pocoo.org/)
* [Fizz buzz (Wiki)](https://en.wikipedia.org/wiki/Fizz_buzz)