Tidak Ada Deskripsi

Matthias Vogelgesang fb3d6c31b0 Fix create call 9 tahun lalu
.gitignore e279ec5b2d Initial commit 9 tahun lalu
README.md e279ec5b2d Initial commit 9 tahun lalu
concert_workspacecreator.py fb3d6c31b0 Fix create call 9 tahun lalu
setup.py e279ec5b2d Initial commit 9 tahun lalu

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)