-
Re: Retry and delay parameters in Scenarios- Custom Python Script
Hi @rnorm , In a custom python scenario, there is no such functionality as it is custom and it is up to your code to handle that. If a step fails an exception is thrown so you can use it to create su…1 · -
Re: Read excel file using Python Pandas
Hi @pafj , If you won't specify an engine to use, the xlrd is used by default. xlrd removed support for anything other than .xls files from version 2.0 (docs), hence you will need to use xlrd<…1 · -
Re: Read excel file using Python Pandas
Hi @pafj , You need to read the file first, please refer to the code below: with folder.get_download_stream(FILE_NAME) as f: data = f.read() df = pd.read_excel(data) It should work now. Best1 · -
Re: Retry and delay parameters in Scenarios- Custom Python Script
Hi, To create a Scenario, you will need to use the Dataiku Project API create_scenario method. Then, create a build dataset step and specify delay and retries on the step using Dataiku Scenario API g…2 · -
Re: How to upload folder into Dataiku library
Hi, this most likely means that you have User isolation enabled on your instance. In this case, you won't be able to modify any DSS/system directories with any DSS user used to run this python c…1 ·