mirror of
https://github.com/koodiklinikka/palkkakysely.git
synced 2026-01-26 11:23:59 +00:00
13 lines
204 B
Python
13 lines
204 B
Python
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()
|