Metadata-Version: 2.1
Name: tictronome
Version: 0.0.3
Summary: A simple tic that uses another thread.
Home-page: https://github.com/donny-son/tictronome
Author: Dongook Son
Author-email: dongook.son@yonsei.ac.kr
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/donny-son/tictronome/issue
Description: # Simple python tic that can ease your mind
        
        We've all been there...staring at the empty terminal while your fans go crazy.  
        I hope this relieves the intensity while you are waiting for that return statement.
        
        ## How To
        
        1. Import `Tic` object from `tictronome`.
        
        ```{python}
        from tictronome import Tic
        ```
        
        2. Initialize it before some time-consuming process.
        
        ```{python}
        tic = Tic()
        some_long_function(...)
        ```
        
        3. Call the `stop` method of `Tic` to stop.
        
        ```{python}
        # end of your script
        tic.stop()
        ```
        
        4. Run your script!
        
        ```{shell}
        $ python3 your_script.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
