Skip to content

Instantly share code, notes, and snippets.

View RadoslavGatev's full-sized avatar

Radoslav Gatev RadoslavGatev

View GitHub Profile
@RadoslavGatev
RadoslavGatev / Russell3000_v1.py
Created January 22, 2021 17:00 — forked from dast1/Russell3000_v1.py
Scrapes the Russell 3000 Membership List (official source in .pdf) and builds Symbol List
# 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):