No Description

Matthias Vogelgesang 3b5cc094c9 Add name argument when creating workspace 8 years ago
.gitignore 8abe27269a Ignore .pyc files 8 years ago
README.md e279ec5b2d Initial commit 8 years ago
concert_workspacecreator.py 3b5cc094c9 Add name argument when creating workspace 8 years ago
setup.py e279ec5b2d Initial commit 8 years ago

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)