Metadata-Version: 2.1
Name: ssutils
Version: 0.1.0
Summary: collection of useful python functions
Home-page: https://github.com/satapathy/pypi-ssutils
Author: S Satapathy
Author-email: shubhakant.satapathy@gmail.com
License: UNKNOWN
Description: # ssutils
        collection of useful python functions
        
        
        ## Screenwriter
        
        Use Screenwriter to prefix screen prints
        **Examples**
        
        ### 1 - Default prefix ###
        
        ```python
        from ssutils import Screenwriter
        
        sw = Screenwriter ()
        sw.echo ('my output')
        ```
        ```
        Output:
        2019-07-26-11:16:04 my output
        ```
        
        ### 2 - Date Time parts in prefix ###
        
        ```python
        from ssutils import Screenwriter
        
        sw = Screenwriter ('%Y-%m-%d %H:%M:%S.%f ')
        sw.echo ('my output')
        ```
        ```
        Output:
        2019-07-26 11:16:04 my output
        ```
         
        ### 3 - Error, Warning & Info standard prefixes
        
        ```python
        from ssutils import Screenwriter
        
        sw = Screenwriter ()
        sw.error ('an error message')
        sw.warn  ('a warming message')
        sw.info  ('an informational message')
        ```
        ```
        Output:
        ```
        
        For format options, see http://strftime.org/
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
