Filter Blackduck Project Names with Hub-Rest-Api Python
I Could Able to Set the Limit to Pull the Project Names Like Below from Blackduck, Hub = Hubinstance() Projects = Hub. Get_Projects(Limit=999) Is There Any Way...
I could able to set the limit to pull the project names like below from blackduck,
hub = HubInstance() projects = hub.get_projects(limit=999)
Is there any way to filter the project names starting with particular string?
projects = hub.get_projects(limit=999, project_name="App1*") ?
Exception something like below
projects = hub.get_projects(limit=999, project_name="App1*")
Output has list of all projects starting with App1