Created
October 9, 2020 10:53
-
-
Save gidgid/ac272a1f524d26ea38b7c3da099b9a0c to your computer and use it in GitHub Desktop.
Function that requires multiple parameters
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 crawl_page(url, output_file, num_retries): # 1 | |
""" | |
Implementation omitted for the sake of brevity | |
""" | |
crawl_page( | |
url="http://hopefully.doesnt.exi.st", output_file="page_content.csv", num_retries=4 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment