README.md 382 B

WorkspaceCreator for Concert/Python

Create a workspace with

from concert.third.workspacecreator import WorkspaceCreator

creator = WorkspaceCreator('foo/bar/baz')
workspace = creator.create()
print(workspace.path)
workspace.close()

or let close automatically with the context manager

with creator.create() as workspace:
    print(workspace.path)