Dagster Essentials Data Link returns Not Found #27293
-
I am trying to do the Dagsters Essentials course but when I try to get the data from https://data.cityofnewyork.us/api/views/755u-8jsi/rows.csv?accessType=DOWNLOAD it returns |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This bug is reported here: #25729 We are working to get that fixed. In the meantime as a workaround attached is the needed data in a CSV: taxi_zones.csv In the # raw_zones = requests.get(
# "https://data.cityofnewyork.us/api/views/755u-8jsi/rows.csv?accessType=DOWNLOAD"
# )
with open("path/to/file/taxi_zones.csv", 'rb') as file:
raw_zones = file.read() |
Beta Was this translation helpful? Give feedback.
This bug is reported here: #25729
We are working to get that fixed. In the meantime as a workaround attached is the needed data in a CSV: taxi_zones.csv
In the
taxi_zones_file
asset, replace the commented out code below with the non commented code and add the correct file path to the CSV file: