Skip to content

Commit

Permalink
Fix WorldBank crawler
Browse files Browse the repository at this point in the history
Apparently http was discontinued. Use https instead.
  • Loading branch information
m-appel authored Sep 5, 2024
1 parent a0eafdf commit 0bc91ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iyp/crawlers/worldbank/country_pop.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from iyp import BaseCrawler, RequestStatusError

URL = 'http://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?per_page=400&mrv=1&format=json'
URL = 'https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?per_page=400&mrv=1&format=json'
ORG = 'WorldBank'
NAME = 'worldbank.country_pop'

Expand Down

0 comments on commit 0bc91ff

Please sign in to comment.