Lots of progress on migration tool for Luma's monthly ask. It's 90% working, but the enrollments endpoint is giving me issues.

This commit is contained in:
Norm Rasmussen
2024-12-04 16:33:40 -05:00
parent 385b965d44
commit eb99e7aaf6
15 changed files with 311 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import pandas as pd
def import_as_dataframe():
importfile = "./data.csv"
df = pd.read_csv(importfile)
return df