-
Programmatically access the plugin's state
Hi, the current (DSS11) version of DSS supports an API access to plugin settings. https://doc.dataiku.com/dss/latest/python-api/plugins.html But it is not possible to get the information about the gi…1 · -
How to access project/global variables from Scenario Reporter custom script
In scenarios there is a possibility to create custom variables via python code in the "Reporters" section. How can I access global variable in the python? Import of dataiku is not possible …1 · -
Re: Writing into Managed Folder
Looks like a bug in DSS9.0.3 related to the amount of the data. The possible solution or workaround is to write the data in smaller chunks. # Solution 1 - store the CSV locally and read it chunk-by-c…1 · -
Re: SFTP Conecction Fail
According to logs you are successfully connected, but the make dir operation fails. Perhaps the user does not have permission to create folders. Or the folder what DSS is trying to create exists, or …1 · -
Re: Python Script to find Connections of a Specific User, Group
Hi, this should give you the relations between users and user groups. import dataiku client = dataiku.api_client() for user in client.list_users(): print(user['login'], ','.join(user.get('groups' ,[]…2 ·