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

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

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)