post https://app.diffgram.com/api/walrus/project//export/to_file
Start generation of an export and optionally return data.
Start with specifying a source, ie from a directory or job.
Exports show up on the UI.
SDK job.generate_export()
# SDK Version >= 0.1.7.6
# Default example returns JSON data
results = job.generate_export()
# Example #2
# We only want the URL for the TF RECORDS data
# as it may be a large file
# (optionally you can change add a source, and add a directory_id param to the function)
result = job.generate_export(
kind = "TF Records",
return_mode = "url")