Metadata-Version: 2.1
Name: tqdmX
Version: 0.0.3
Summary: A tqdm wrapper for multi-line logging.
Home-page: https://github.com/kimythanly/tqdmX
Author: KimythAnly
Author-email: kimythanly@gmail.com
License: UNKNOWN
Description: # tqdmX
        This is a tqdm wrapper for multi-line logging.
        
        ## Demo
        <img src="https://github.com/KimythAnly/tqdmX/blob/main/demo.gif" width="768"/>
        
        ## Installation
        ```
        pip install tqdmX
        ```
        
        ## Usage
        The following is a simple example.
        ```python
        import time
        from tqdmX import TqdmWrapper, format_str
        tw = TqdmWrapper(range(10))
        for i in tw:
          tw.add(f'Iter {i}')
          tw.add('line1')
          tw.add(format_str('blue','line2'))
          tw.update()
          time.sleep(0.5)
        ```
        
        For the demo gif shown above, you may refer to `tests/test.py`.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
