Metadata-Version: 2.1
Name: sil
Version: 0.1.0
Summary: Status indicator inline
Home-page: https://pypi.org/project/sil/
Author: Sumner Magruder
Author-email: sumner.magruder@zmnh.uni-hamburg.de
License: UNKNOWN
Description: # About
        Sil helps keep track of an iterative functions status inline.
        
        ```
        from sil import Sil
        
        status = Sil(total=num_el)
        for i, el in elements:
          sil.update(i)
        
        
        status = Sil(total=num_el)
        for el in elements:
          status.tick()
        ```
        
        
        ## How to install with conda
        
        ```
        pip install sil
        
        # remove old copies
        rm -rf /anaconda3/lib/python3.6/site-packages/sil*
        
        conda skeleton pypi sil
        conda build sil
        conda install --use-local sil
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
