Skip to content

sadikovi/databricks-repl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

databricks-repl

Unofficial Databricks REPL API.

Example of authenticating in Databricks Community Edition or Databricks Platform with user-based authentication. Does not use Databricks Token API, so it can be used in CE as well.

Usage

db = DatabricksApi("https://community.cloud.databricks.com")

session = db.login("user", "password")

# by default, user has only one workspace
workspaces = session.list_workspaces()

workspace = workspaces[0]

clusters = workspace.list_clusters()

Releases

No releases published

Packages

No packages published

Languages