Metadata-Version: 2.1
Name: ipython-autotime
Version: 0.2.0
Summary: Time everything in IPython
Home-page: https://github.com/cpcloud/ipython-autotime
Author: Phillip Cloud
Author-email: cpcloud@gmail.com
License: Apache
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: ipython
Requires-Dist: monotonic ; python_version < "3.3"

# ipython-autotime
Time everything in IPython

## Installation:

```console
$ pip install ipython-autotime
```

## Examples

```python
In [1]: %load_ext autotime
time: 295 µs

In [2]: x = 1
time: 519 µs

In [3]: x / 0
---------------------------------------------------------------------------
ZeroDivisionError                         Traceback (most recent call last)
<ipython-input-3-034eb0c6102b> in <module>
----> 1 x/0

ZeroDivisionError: division by zero
time: 79.7 ms
```

## Want to turn it off?

```python
In [4]: %unload_ext autotime
```


