diff --git a/getdataapi/getData.py b/getdataapi/getData.py index c41ff58..a4a7256 100644 --- a/getdataapi/getData.py +++ b/getdataapi/getData.py @@ -46,7 +46,7 @@ class DataScraper(): """ json_obj:dict = {"username":username,"password":password} - response = requests.post(f"{self.base_url}/login",json=json_obj) + response = requests.post(f"{self.base_url}/api/login",json=json_obj) if(not response.ok): print(f"response:{response}")