-
Re: Copying data from local managed folder to S3 managed folder
Hi @harsha_dataiku , Yes, you can do so with the managed folder read/write APIs: https://doc.dataiku.com/dss/latest/connecting/managed_folders.html#usage-in-python The following code should work for …1 · -
Re: Turn a custom model in the flow into a model object
Hi @tanguy , There is example code in the link I provided above (see here). I've added the code below for reference: import dataiku # if using API from inside DSSclient = dataiku.api_client()project …1 · -
Re: Dataiku App - Edit Project Variables
Hi @Aastha , You do not need separate tiles, you may use one python helper function to dynamically provision choices for two variable inputs. I've provided an example here where each input is identif…2 · -
Re: 'BuildFlowItemsStepResult' object has no attribute 'is_done'
Hi @aldmimi , You will need to use async in your code and unfortunately, aysnc does not work in python versions greater than 3.6. You can run it if you have a Python3.6 code env. If you prefer to use…1 · -
Re: Error Accessing the shared folders in Onedrive
Hi @walt_ejtorres , If you remove the shared folder name, are you able to browse? Also, are you able to write to the onedrive shared folder (or any folder) using the instructions provided in the plug…1 ·