diff options
-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() |