Skip to content

Instantly share code, notes, and snippets.

View sandrovw64's full-sized avatar

sandrovw64

View GitHub Profile
@sandrovw64
sandrovw64 / Kubernetes Useful Commands.md
Created July 22, 2022 03:03
Kubernetes Useful Commands
@sandrovw64
sandrovw64 / sample.py
Created May 16, 2023 18:38
Get CSV data from URL using Pandas
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)