Python bindings for the Domino Data Lab API. Permits interaction with a Domino server from Python using the API.
You can set up the connection by creating new instance of Domino.
The parameters are:
- project: A project identifier (in the form of ownerusername/projectname)
- api_key: (Optional) An API key to authenticate with. If not provided the library will expect to find one in the DOMINO_USER_API_KEY environment variable.
- host: (Optional) A host URL. If not provided the library will expect to find one in the DOMINO_API_HOST environment variable.
List the runs on the selected project.
Start a new run on the selected project. The parameters are:
- command: The command to run as an array of strings where members of the array represent arguments
of the command. E.g.
["main.py", "hi mom"] - isDirect: (Optional) Whether or not this command should be passed directly to a shell.
- commitId: (Optional) The commitId to launch from. If not provided, will launch from latest commit.
- title: (Optional) A title for the run.
- tier: (Optional) The hardware tier to use for the run. Will use project default tier if not provided.
- publishApiEndpoint: (Optional) Whether or not to publish an API endpoint from the resulting output.
Same as method run_start except make a blocking request that waits until job is finished.
- command: The command to run as an array of strings where members of the array represent arguments
of the command. E.g.
["main.py", "hi mom"] - isDirect: (Optional) Whether or not this command should be passed directly to a shell.
- commitId: (Optional) The commitId to launch from. If not provided, will launch from latest commit.
- title: (Optional) A title for the run.
- tier: (Optional) The hardware tier to use for the run. Will use project default tier if not provided.
- publishApiEndpoint: (Optional) Whether or not to publish an API endpoint from the resulting output.
- poll_freq: (Optional) Number of seconds in between polling of the Domino server for status of the task that is running.
- max_poll_time: (Optional) Maximum number of seconds to wait for a task to complete. If this threshold is exceeded, an exception is raised.
Stop an existing run in the selected project. The parameters are:
- runId: string that identifies the run
- saveChanges: (Defaults to True) If false, run results will be discarded.
- commitMessage: (Optional) Adds a Domino commit message to the run commit.
Get stdout emitted by a particular run. The parameters are:
- runId: string that identifies the run
List the files in a folder in the Domino project. The parameters are:
- commitId: The commitId to list files from.
- path: (Defaults to "/") The path to list from.
Upload a Python file object into the specified path inside the project. See examples/upload_file.py for an example. The parameters, both of which are required, are:
- path: The path to save the file to. For example,
/README.mdwill write to the root directory of the project while/data/numbers.csvwill save the file to a subfolder nameddata(if thedatafolder does not yet exist, it will be created) - file: A Python file object. For example,
f = open("authors.txt","rb")
Retrieve a file from the Domino server by blob key. The parameters are:
- key: The key of the file to fetch from the blob server.
Publishes an app in the Domino project, or republish an existing app. The parameters are:
- unpublishRunningApps: (Defaults to True) Will check for any active app instances in the current project and unpublish them before publishing.
Stops all running apps in the Domino project.
This library is made available under the Apache 2.0 License. This is an open-source project of Domino Data Lab.