Govern Artifacts#
Artifacts are all items in Dataiku Govern. Note: to learn more about them, go to the Dataiku Govern definitions page.
List all artifact sign-offs#
import dataikuapi
host = "http(s)://GOVERN_HOST:GOVERN_PORT"
apiKey = "Your API key secret"
client = dataikuapi.GovernClient(host, apiKey)
# retrieve a specific artifact by its ID
artifact = client.get_artifact('ar.1773')
# list all its sign-offs
signoffs = artifact.list_signoffs()