Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorial/2-jobs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Let's write our extractor:

import requests

FABLABS_API_URL = 'https://public-us.opendatasoft.com/api/records/1.0/search/?dataset=fablabs&rows=1000'
FABLABS_API_URL = 'https://public.opendatasoft.com/api/records/1.0/search/?dataset=georef-world-country&rows=1000'

def extract_fablabs():
yield from requests.get(FABLABS_API_URL).json().get('records')
Expand Down