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
# Build Russell 3000 List | |
# Import libraries | |
import urllib.request | |
import datetime | |
# Download Russell 3000 to local repository | |
f_path = "/Russell3000/Membership Lists/" | |
f_name = f_path + "Russell3000 " + datetime.date.today().strftime("(%b %d, %Y)") + ".pdf" | |
def download_file(url): |