Skip to content

Instantly share code, notes, and snippets.

Avatar

sandrovw64

View GitHub Profile
@sandrovw64
sandrovw64 / sample.py
Created May 16, 2023 18:38
Get CSV data from URL using Pandas
View sample.py
import pandas as pd
years = [2022, 2023]
months = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
account_token = '52106c49-445d-44b4-b88b-1b9a636a1ab2'
for year in years:
for month in months:
month_string = str(month).zfill(2)