April 2018
Intermediate to advanced
280 pages
8h 37m
English
Similarly, an existing project can be updated by passing the project ID and project descriptor Python dictionary to the update_project() function call:
def update_project(conn): project_id = "ce5156690f4c48bda5b5x9041325e493" project_desc = { "description":"This project is for packtpub authors", "isenabled" : True, "name":"packtpub_authors" } conn.identity.update_project(project_id, **project_desc)