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

https://github.com/noook/flaskfib


https://github.com/noook/flaskfib

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# flaskfib

Clone the project and install the dependencies using :

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

Run the server with

```sh
./app.py
```

Test the xnth number in the Fibonacci number by running
```sh
curl -X GET http://127.0.0.1:8000/fib/x
```

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