Add full generation pipeline

This commit is contained in:
Aarni Koskela
2021-02-19 13:10:32 +02:00
parent 5fe58d8079
commit 7258795cea
8 changed files with 100 additions and 3 deletions

12
copy_massaged_data.py Normal file
View File

@@ -0,0 +1,12 @@
from data_ingest import read_data
def main():
df = read_data()
df.to_html("out/data.html")
df.to_csv("out/data.csv")
df.to_excel("out/data.xlsx")
if __name__ == "__main__":
main()