Metadata-Version: 2.1
Name: timelibWAM
Version: 0.0.1
Summary: A library made to inform about run time
Home-page: https://github.com/theWAM/timelib.git
Author: Woody Allen Montilus
Author-email: thewamcoding@gmail.com
License: UNKNOWN
Description: # timelibWAM
        
        timelibWAM is a library meant to alert the user about the 
        completion of a program. This can work best with larger
        projects in which may take longer periods of time to 
        finish running. The package can also alert the user
        about errors that occur.
        
        **IMPORTANT:**
          When utilizing the library, run the import statement by itself. After 
          completing the entry, run the rest of your code. You will incur errors otherwise!
        
        **Best Setup:**
        Copy and paste this bad boy:
        
        ===================================
        
        from timelibWAM import *
        
              try:
                  s = tl.start() 
        
                  *your code*
                  
                  tl.send_frame_end(s)
              
              except Exception as e:
                  tl.error_alert()
        
        ===================================
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
