Skip to main content

tempdirs -- Safely create temporary directories

Project description

Description

tempdirs is a library which allows users to safely and cleanly create any number of temporary directories. Temporary directories are automatically deleted. It was created as a testing utility.

Installation

You can use pip or easy_install

  • pip install tempdirs

  • easy_install tempdirs

Examples

You can tempdirs.makedirs as a decorator passing in the number of temporary directories needed:

import os

import tempdirs

@tempdirs.makedirs(2)
def test_foo(srcdir, dstdir):
    srcfile = os.path.join(srcdir,'foo')
    dstfile = os.path.join(dstdir,'bar')
    with open(srcfile, 'w') as fp:
        fp.write('src content\n')
    with open(dstfile, 'w') as fp:
        fp.write('dst content\n')

You can also use tempdirs.makedirs as a Context Manager:

import os

import tempdirs

with tempdirs.makedirs(2) as (srcdir, dstdir):
    srcfile = os.path.join(srcdir,'foo')
    dstfile = os.path.join(dstdir,'bar')
    with open(srcfile, 'w') as fp:
        fp.write('src content\n')
    with open(dstfile, 'w') as fp:
        fp.write('dst content\n')

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

tempdirs-0.0.5.tar.gz (2.0 kB view hashes)

Uploaded Source

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