-
Re: ProjectId in parameter python script
Hi Patrik, The get_default_project() method of the dataikuapi.DSSClient class can help you: import dataikuclient = dataiku.api_client()current_project_key = client.get_default_project().project_key B…1 · -
Re: Compute diff between dates and number of days
Hi, If all your column's values are positive and you want to decrement from it, you can just multiply it by -1 to achieve the desired output: inc(date, -1*delta_days, "days") Best, Harizo1 · -
Re: Converting OSGB36 coordinates (Eastings and Northings) to WGS84 Lat Longs?
Hi Steven, There is an open-source Python package called convertbng that may suit your needs. You can install it using code environments and then leverage it in any of your Python code (recipes, note…1 · -
Re: How to read all words in pdf
Hi Sunshine, According to the error message you are missing a system dependency. Please double-check that you fulfilled all the pre-requisites listed on the library's documentation before importing y…1 · -
Re: Access the commit number of a recipe via the API
Hi, There is indeed nothing specific to this task in the public API. What would be the use-case for it? I am interested to understand what is missing from the data you already have in the internal da…2 ·