Warning
This documentation is for an old version of IPython. You can find docs for newer versions here.
TemporaryDirectory class, copied from Python 3.2.
This is copied from the stdlib and will be standard in Python 3.2 and onwards.
Bases: object
Create and return a temporary directory. This has the same behavior as mkdtemp but can be used as a context manager. For example:
- with TemporaryDirectory() as tmpdir:
- ...
Upon exiting the context, the directory and everthing contained in it are removed.
Bases: object
Open a file named filename in a temporary directory.
This context manager is preferred over NamedTemporaryFile in stdlib tempfile when one needs to reopen the file.
Arguments mode and bufsize are passed to open. Rest of the arguments are passed to TemporaryDirectory.
Bases: IPython.utils.tempdir.TemporaryDirectory
Creates a temporary directory and sets the cwd to that directory. Automatically reverts to previous cwd upon cleanup. Usage example:
- with TemporaryWorkingDirectory() as tmpdir:
- ...