Metadata-Version: 1.1
Name: timeago
Version: 1.0.6
Summary: A very simple python library, used to format datetime with `*** time ago` statement. eg: "3 hours ago".
Home-page: https://github.com/hustcc/timeago
Author: hustcc
Author-email: i@hust.cc
License: MIT
Description: 
        A very simple python lib, used to format datetime with *** time ago statement.
        
        Install
        
            pip install timeago
        
        Usage
        
        import timeago, datetime
        d = datetime.datetime.now() + datetime.timedelta(seconds = 60 * 3.4)
        # locale
        print (timeago.format(d, locale='zh_CN')) # will print 3分钟后
        
        
Keywords: timeago,seconds ago,minutes ago,hours ago,just now
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Utilities
