Skip to content

Instantly share code, notes, and snippets.

@hltbra
Created May 16, 2019 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hltbra/8c8dc219a791bed6c936988dfd87901a to your computer and use it in GitHub Desktop.
Save hltbra/8c8dc219a791bed6c936988dfd87901a to your computer and use it in GitHub Desktop.
def scrape_listing():
for link in get_links(LISTING_URL):
scrape_link(link)
def scrape_link(url):
resp = requests.get(url)
info = get_link_info(resp.content)
save('link', info)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment