Metadata-Version: 2.1
Name: extendedos
Version: 0.1.0
Summary: Extended os module
Home-page: https://github.com/iory/eos
Author: iory
Author-email: ab.ioryz@gmail.com
License: MIT
Description: # eos: Extended os module
        
        [![Build Status](https://github.com/iory/eos/workflows/Run%20Tests/badge.svg?branch=master)](https://github.com/iory/eos/actions)
        
        ## Install
        
        ```
        pip install extendedos
        ```
        
        ## Quick Start
        
        ```
        import os.path as osp
        from eos import makedirs
        makedirs('/tmp/example/1/2')
        osp.exists('/tmp/example/1/2')
        # True
        from eos import make_fancy_output_dir
        make_fancy_output_dir('/tmp/result')
        # '/tmp/result/iory-mac-2020-03-27-19-08-17-191116-46504'
        make_fancy_output_dir(time_format=None)
        # '/tmp/vm7bwis1'
        ```
        
        ```
        from eos import measure
        import time
        with measure('measure_example'):
           time.sleep(1.0)
        # measure_example: 00:00:01.000574
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
