/flaskfib

Primary LanguagePython

flaskfib

Clone the project and install the dependencies using :

git clone git@github.com:neilrichter/flaskfib.git; pip install -r ./requirements.txt;

Run the server with

./app.py

Test the xnth number in the Fibonacci number by running

curl -X GET http://127.0.0.1:8000/fib/x

Example :

curl -X GET http://127.0.0.1:8000/fib/13
377