Skip to main content

A simple container for handling multiple tempfiles

Project description

A simple container for handling multiple tempfiles

Example:

>>> import tempstore
>>> s = tempstore.TempStore('somedata')
>>> s.create('banana')
'/var/folders/ng/c57k6x7n1qn9f6hw_hw4zrlcnxhmy8/T/tmpsvzuj4bd/tmp3gh1vid9'
>>> s.copy('./')
>>> s.cleanup()
>>>

tempstore.TempStore(name=None)

Create a new TempStore.

TempStore.create(name)

Create a new tempfile. This returns the path to the tempfile, and it can be accessed again later with either TempStore.paths[name] or TempStore.objs[name].name.

TempStore.paths

Access the paths of items in the TempStore

TempStore.objs`

Access the tempfile.NamedTemporaryFile objects of items in the TempStore

TempStore.cleanup()

Remove all the temporary files in the TempStore

TempStore.copy(path=None, exist_ok=True)

Copy all items in the TempStore to a given path. If TempStore.name is not None, a new directory will be created in path with the name, and all files will be copied there.

exist_ok will be passed to os.makedirs if TempStore.name is not None

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tempstore-1.0.5.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

tempstore-1.0.5-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page