Metadata-Version: 2.1
Name: py-comment-times
Version: 0.0.1
Summary: Python get time package
Home-page: UNKNOWN
Author: Riyad Zaigirdar
Author-email: <riyadzaigir280@gmail.com>
License: UNKNOWN
Description: A package that allows times away or far of a given time and multiple formats for that given time
        
        # Basic Python Library That Gives Times Ago, Times Due Or Multiple Time Formats(Pick Any In The Array)
        
            ## Below is an example how you use it
        
            from py_comment_times import get_times_far, get_times_format
            
            import datetime
            from datetime import timezone
        
            now = datetime.datetime.now(timezone.utc)
        
            next = now + datetime.timedelta(1,3)
        
            print(get_times_format(next))
        
            print(get_times_far(next))
                
Keywords: python,times,datetime,comment,post,ago,far,format
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
