https://github.com/noook/flaskfib
https://github.com/noook/flaskfib
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/noook/flaskfib
- Owner: noook
- Created: 2018-10-26T10:39:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T13:55:28.000Z (over 7 years ago)
- Last Synced: 2025-02-09T04:28:02.336Z (over 1 year ago)
- Language: Python
- Size: 3.96 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```