Metadata-Version: 1.1
Name: klab-autotime
Version: 0.0.2
Summary: Modified from Phillip Cloud project Time everything in IPython
Home-page: https://github.com/gerard0315/klab-autotime
Author: Yiran Tao
Author-email: yt2487@columbia.edu
License: Apache
Description-Content-Type: UNKNOWN
Description: # klab-autotime
        Time everything in IPython
        
        ## Installation:
        
        use pip
        
        ## Examples
        
        ```python
        Installed autotime.py. To use it, type:
          %load_ext klab-autotime
        
        In [2]: %load_ext autotime
        time: 1433692.87 s
        
        In [3]: x = 1
        time: 730.99 us
        
        In [4]: x + 2
        Out[4]: 3
        time: 2.50 ms
        
        In [5]: x + ''
        ---------------------------------------------------------------------------
        TypeError                                 Traceback (most recent call last)
        <ipython-input-5-bde712cacec5> in <module>()
        ----> 1 x + ''
        
        TypeError: unsupported operand type(s) for +: 'int' and 'str'
        time: 156.05 ms
        ```
        
        ## Want to turn it off?
        
        ```python
        In [5]: %unload_ext klab-autotime
        ```
        # klab-autotime
        
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
