dv-lebedev / historical-prices-downloader

Little script to download historical prices from Google Finance.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

historical-prices-downloader

Little script to download historical prices from Google Finance.

def main():

    destination_path = os.getcwd() #directory for downloded files

    start_date = datetime(2012, 5, 1)
    end_date = datetime(2012, 6, 1)

    symbols = [
        'GOOG',
        'IBM',
        'JPM'
    ]

    download_all(symbols, start_date, end_date, destination_path)

About

Little script to download historical prices from Google Finance.

License:MIT License


Languages

Language:Python 100.0%