Created
June 9, 2017 08:50
-
-
Save chriswebb09/b767feed3d8be4ec6b6c6ee0ce3a6a5c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def main(): | |
crawl = WebCrawler() | |
new_data = crawl.request_resource() | |
if new_data is not None: | |
for url in new_data: | |
print(url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment