Metadata-Version: 2.0
Name: ipython-tempmagic
Version: 0.0.1
Summary: Temporary file magic IPython
Home-page: https://github.com/tkf/ipython-tempmagic
Author: Liam Deacon
Author-email: liam.m.deacon@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: ipython jupyter notebook tempfile tempdir
Platform: UNKNOWN
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: jupyter (>=1.0.0)

# Magics for temporary workspace

- `%cdtemp` -- Creates a temporary directory that is magically cleaned up
  when you exit IPython session.

- `%%with_temp_dir` -- Run Python code in a temporary directory and
  clean up it after the execution.

# Installation

Install using pip:

```
pip install ipython-tempmagic  # PyPI published version
```

or 

```
pip install git+https://github.com/Lightslayer/ipython-tempmagic  # development version
```

For older Jupyter versions (< 5.0):

```text
%install_ext https://raw.github.com/tkf/ipython-tempmagic/master/tempmagic.py
```


