Skip to content

Commit

Permalink
changed end part of url
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbradshaw committed Mar 3, 2017
1 parent d2f2e92 commit e72ee15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scraper.py
Expand Up @@ -45,6 +45,6 @@ def scrape_and_look_for_next_link(url):
# START HERE: define your starting URL - then
# call a function to scrape the first page in the series.
# ---------------------------------------------------------------------------
base_url = 'https://paulbradshaw.github.io/scraping-for-everyone/webpages/'
starting_url = urlparse.urljoin(base_url, 'example_table_1.html')
base_url = 'https://paulbradshaw.github.io/'
starting_url = urlparse.urljoin(base_url, 'scraping-for-everyone/webpages/example_table_1.html')
scrape_and_look_for_next_link(starting_url)

0 comments on commit e72ee15

Please sign in to comment.