Keine Beschreibung

Matthias Vogelgesang 8abe27269a Ignore .pyc files vor 9 Jahren
.gitignore 8abe27269a Ignore .pyc files vor 9 Jahren
README.md e279ec5b2d Initial commit vor 9 Jahren
concert_workspacecreator.py 0067b9ea32 Document API properly vor 9 Jahren
setup.py e279ec5b2d Initial commit vor 9 Jahren

README.md

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)