diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-03-17 20:18:23 +0200 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-03-17 20:18:23 +0200 |
commit | 9381ccc0b597ea148b0e037ba64712bdae57c542 (patch) | |
tree | e6a9a89e08ec4a5d6d972563700b349498c73b66 | |
parent | a28e3fb9af960c0a1dc7248e9f10e904bfdb04f1 (diff) |
Hoepfully last readme update
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | api/main.py | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Overview This project has the functionality to fetch data about NBA and store it in csv format files. It also has an API to serve the data. -API is can be found here: [https://luhamus-nba-data.herokuapp.com/](https://luhamus-nba-data.herokuapp.com/). +API can be found here: [https://luhamus-nba-data.herokuapp.com/](https://luhamus-nba-data.herokuapp.com/). # How to use ## API diff --git a/api/main.py b/api/main.py index 1a34b98..4afe0d5 100644 --- a/api/main.py +++ b/api/main.py @@ -1,7 +1,6 @@ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from .routers import get -import pandas as pd app = FastAPI() |