Skip to content

Commit

Permalink
⚡️ Don't upload CSV data cause it's expensive
Browse files Browse the repository at this point in the history
  • Loading branch information
jh0ker committed May 16, 2024
1 parent ade877b commit b11c2ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddj_cloud/scrapers/talsperren/talsperren.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def _get_base_dataset():
bio.seek(0)
upload_file(bio.read(), "talsperren/data.parquet.gzip")

# CSV
upload_dataframe(df, "talsperren/data.csv")
# CSV - expensive!
# upload_dataframe(df, "talsperren/data.csv")

# Add additional columns used for exporting

Expand Down

0 comments on commit b11c2ce

Please sign in to comment.