simonw / airtable-export

Export Airtable data to YAML, JSON or SQLite files on disk
https://datasette.io/tools/airtable-export
Apache License 2.0
112 stars 15 forks source link

Handle tables with / in the name #25

Closed simonw closed 11 months ago

simonw commented 11 months ago

Got a 404 error handling one of these.

simonw commented 11 months ago

Fix is to escape the /.

simonw commented 11 months ago

The fix is to do quote(table, safe='') because Python's quote function defaults to safe='/'.