0

I need to automate a way to download Azure Databricks notebooks using Python to my local machine. Please let me know if there are any ways.

mkrieger1
  • 19,194
  • 5
  • 54
  • 65
PAVAN
  • 33
  • 1
  • 4

1 Answers1

0

Yes, there is an API endpoint to export a notebook.

Refer to the documentation: https://learn.microsoft.com/en-us/azure/databricks/dev-tools/api/latest/workspace#--export

Here's how to make API requests with Python: Making a request to a RESTful API using python

mkrieger1
  • 19,194
  • 5
  • 54
  • 65