Download all cached Danger & Play posts. Dependencies: bs4, requests
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
from bs4 import BeautifulSoup | |
import requests | |
def get_all_links(r): | |
all_links = [] | |
soup = BeautifulSoup(r.content,'lxml') | |
for url in soup.findAll('loc'): | |
all_links.append(url.string) | |
return all_links | |
def crawl_and_save(target_url, current_depth=1, max_depth=2): | |
r = requests.get(target_url) | |
if current_depth < max_depth: | |
current_depth += 1 | |
links = get_all_links(r) | |
for link in links: | |
print(link) | |
crawl_and_save(link,current_depth) | |
else: | |
filename = target_url.split('/')[-2] + '.html' | |
with open(filename, mode='wb') as file: | |
file.write(r.content) | |
if __name__ == '__main__': | |
crawl_and_save('http://www2.dangerandplay.com/post-sitemap1.xml') | |
crawl_and_save('http://www2.dangerandplay.com/post-sitemap2.xml') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment