Metadata-Version: 2.1
Name: extendedos
Version: 0.0.5
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
        
        ## 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'
        ```
        
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
