mirror of
https://github.com/koodiklinikka/palkkakysely.git
synced 2026-02-16 06:53:33 +00:00
Add full generation pipeline
This commit is contained in:
12
copy_massaged_data.py
Normal file
12
copy_massaged_data.py
Normal 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()
|
||||
Reference in New Issue
Block a user