Skip to content

Commit

Permalink
fix: incorrect json file name
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 committed Nov 27, 2023
1 parent 2d205c8 commit 47c5253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/workspace/fetch_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
import io

response = requests.get('https://d37ci6vzurychx.cloudfront.net/trip-data/green_tripdata_2023-01.parquet')
pd.read_parquet(io.BytesIO(response.content)).to_json('yellow_tripdata_2023-01.jsonl', orient='records', lines=True)
pd.read_parquet(io.BytesIO(response.content)).to_json('green_tripdata_2023-01.jsonl', orient='records', lines=True)

0 comments on commit 47c5253

Please sign in to comment.