Update tools/attractions/apis.py
Browse files
tools/attractions/apis.py
CHANGED
|
@@ -5,7 +5,7 @@ from annotation.src.utils import extract_before_parenthesis
|
|
| 5 |
|
| 6 |
|
| 7 |
class Attractions:
|
| 8 |
-
def __init__(self, path="
|
| 9 |
self.path = path
|
| 10 |
self.data = pd.read_csv(self.path).dropna()[['Name','Latitude','Longitude','Address','Phone','Website',"City"]]
|
| 11 |
print("Attractions loaded.")
|
|
|
|
| 5 |
|
| 6 |
|
| 7 |
class Attractions:
|
| 8 |
+
def __init__(self, path="/home/user/app/database/attractions/attractions.csv"):
|
| 9 |
self.path = path
|
| 10 |
self.data = pd.read_csv(self.path).dropna()[['Name','Latitude','Longitude','Address','Phone','Website',"City"]]
|
| 11 |
print("Attractions loaded.")
|