Metadata-Version: 2.1
Name: utilpy
Version: 0.1.4
Summary: Collection of utils that we use often. 
Home-page: https://github.com/BkrmDahal/utilpy
Author: Bikram Dahal (Arch analytics)
Author-email: bikram@archanalaytics.ai
License: MIT
Description: # Welcome to utilspy documentation!
        [![Documentation Status](https://readthedocs.org/projects/utilpy/badge/?version=latest)](https://utilpy.readthedocs.io/en/latest/?badge=latest)
        
        Collection of python utils.
        
        For detail [Here is Documentation](https://utilpy.readthedocs.io/en/latest/index.html)
        
        # Install 
        ```bash
        pip3 install utilpy
        ```
        
        ____
        
        ## utilspy package
        
        ```python
        
        import time
        
        from utilpy import log, files, decorator
        
        # logger function 
        logs = log.Logger()
        
        logs.log("< started >")
        time.sleep(2)
        logs.log("running..")
        time.sleep(1)
        logs.log("</>")
        
        
        # timeout
        @decorator.timeout(5)
        def add(x, y):
            return x+y
        
        # other useful utils
        files = utils.walk_directory('.')
        
        ```
        
        ____
Platform: UNKNOWN
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3
Description-Content-Type: text/markdown
