summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Luha <rasmus.luha@gmail.com>2022-03-17 20:18:23 +0200
committerRasmus Luha <rasmus.luha@gmail.com>2022-03-17 20:18:23 +0200
commit9381ccc0b597ea148b0e037ba64712bdae57c542 (patch)
treee6a9a89e08ec4a5d6d972563700b349498c73b66
parenta28e3fb9af960c0a1dc7248e9f10e904bfdb04f1 (diff)
Hoepfully last readme update
-rw-r--r--README.md2
-rw-r--r--api/main.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3cac2c6..0db80c5 100644
--- a/README.md
+++ b/README.md
@@ -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()