Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on September 24, 2024 12:13PM
Likes: 0
Replies: 3
Do we have a mechanism to retrieve list of projects within our Dataiku instance that has certain specific tags?
Thanks!
I am not aware of an API that can filter projects by tag so you will need to get all of the tags for all of the projects first and then filter that. You can add this line to your code to collect all the project tags into a single list:
project_tags = list(proj.get_tags()['tags'].keys())
To do this in the GUI you can navigate to Projects (/project-list/) and use the Tags filter drop down.
As a built in method or do you want to use the Dataiku Python API?
Dataiku Python API should work @Turribeach .
The docs I had found so far helps us to retrieve projects but not projects with certain tags. So curious to hear if there's a way to filter projects by tags.
import dataiku, json
from dataiku import pandasutils as pdu
import pandas as pd client = dataiku.api_client()
projects = client.list_projects()
df = pd.DataFrame(columns=['project', 'dataset'])
for p in projects :
proj = client.get_project(p["projectKey"])
datasets = []
all_datasets = proj.list_datasets()
for dataset in all_datasets:
df = df.append({'project': p["projectKey"], 'dataset': dataset.name}, ignore_index=True)
df = df.drop_duplicates()
print(df)