-
Re: How to close an API connection and start a new one?
We you are using the dataikuapi each DSSClient object is independent. So just make sure you using a different client object and you will be fine: client = dataikuapi.DSSClient(https://"some_host…1 · -
Re: Code Envs - What is the difference between AUTOMATION_SINGLE and AUTOMATION_VERSIONED?
AUTOMATION_SINGLE is a code environment that has been manually created in the Automation node. AUTOMATION_VERSIONED is a code environment that has been added as part of a bundle deployment.1 · -
Re: How to extract the project creation date and last activity on the project
Something like this will do: import datetime import dataiku import pandas as pd, numpy as np from dataiku import pandasutils as pdu client = dataiku.api_client() project_keys = client.list_project_ke…1 · -
Re: How to create subfolders inside a Managed Folder using Python?
First of all be aware that Dataiku won’t create managed folders in your storage technology until after you put a file on them. Secondly you don’t need to do anything else for subfolders other than sp…1 · -
Re: Job for Instance Sanity Check
Indeed you can use the Python API for this: import dataikuclient_handle = dataiku.api_client()sanity_check_result = client_handle.perform_instance_sanity_check(wait=True)if sanity_check_result.has_me…1 ·