Emergency script for Anthology that was abanonded. CSV updates. HackerRank notes

This commit is contained in:
Norm Rasmussen
2024-02-01 16:09:29 -05:00
parent 111d6412d6
commit 7080a3a4f3
4 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import pandas as pd
import requests
MASTER = "~/Downloads/Anthology-Master-CSV-FirstChanges.csv"
df = pd.read_csv(MASTER)
for row in df.iterrows():
print(row)