-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,613 additions
and
1,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
"""module to raise error""" | ||
|
||
def not_200_response(url,response): | ||
|
||
def not_200_response(url, response): | ||
""" | ||
This function raise a ConnectionError if the status code a requests is not 200. | ||
""" | ||
if not response.status_code == 200: | ||
raise ConnectionError(f"""Error {response.status_code} | ||
for the api {url}. Message : {response.reason}.""") | ||
raise ConnectionError( | ||
f"""Error {response.status_code} | ||
for the api {url}. Message : {response.reason}.""" | ||
) | ||
|
||
|
||
def no_site_error(code, name, country, site): | ||
""" | ||
""" | ||
This function raise a ValueError if the selected country is "us" or a site is not selected. | ||
""" | ||
if not site or country == 'us': | ||
if not site or country == "us": | ||
if country: | ||
raise ValueError(f"The funds of the country {country} cannot be scraped.") | ||
raise ValueError(f"The funds {name} ({code}) cannot be scraped.") |
Oops, something went wrong.