├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── setup.py ├── src ├── __init__.py └── timeago │ ├── __init__.py │ ├── excepts.py │ ├── locales │ ├── __init__.py │ ├── ar.py │ ├── bg.py │ ├── ca.py │ ├── convert_local_to_json.js │ ├── create_tests.py │ ├── da.py │ ├── de.py │ ├── el.py │ ├── en.py │ ├── en_short.py │ ├── es.py │ ├── eu.py │ ├── fa_IR.py │ ├── fi.py │ ├── fr.py │ ├── gl.py │ ├── guj_IN.py │ ├── he.py │ ├── hu.py │ ├── import_locale.py │ ├── in_BG.py │ ├── in_HI.py │ ├── in_ID.py │ ├── is.py │ ├── it.py │ ├── ja.py │ ├── ko.py │ ├── lt.py │ ├── ml.py │ ├── my.py │ ├── nb_NO.py │ ├── nl.py │ ├── nn_NO.py │ ├── pl.py │ ├── pt_BR.py │ ├── pt_PT.py │ ├── ro.py │ ├── ru.py │ ├── sk.py │ ├── sv_SE.py │ ├── ta.py │ ├── th.py │ ├── tr.py │ ├── uk.py │ ├── vi.py │ ├── zh_CN.py │ └── zh_TW.py │ ├── parser.py │ └── setting.py └── test ├── __init__.py ├── do_test.sh └── testcase.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/timeago/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/__init__.py -------------------------------------------------------------------------------- /src/timeago/excepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/excepts.py -------------------------------------------------------------------------------- /src/timeago/locales/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/__init__.py -------------------------------------------------------------------------------- /src/timeago/locales/ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ar.py -------------------------------------------------------------------------------- /src/timeago/locales/bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/bg.py -------------------------------------------------------------------------------- /src/timeago/locales/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ca.py -------------------------------------------------------------------------------- /src/timeago/locales/convert_local_to_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/convert_local_to_json.js -------------------------------------------------------------------------------- /src/timeago/locales/create_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/create_tests.py -------------------------------------------------------------------------------- /src/timeago/locales/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/da.py -------------------------------------------------------------------------------- /src/timeago/locales/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/de.py -------------------------------------------------------------------------------- /src/timeago/locales/el.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/el.py -------------------------------------------------------------------------------- /src/timeago/locales/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/en.py -------------------------------------------------------------------------------- /src/timeago/locales/en_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/en_short.py -------------------------------------------------------------------------------- /src/timeago/locales/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/es.py -------------------------------------------------------------------------------- /src/timeago/locales/eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/eu.py -------------------------------------------------------------------------------- /src/timeago/locales/fa_IR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/fa_IR.py -------------------------------------------------------------------------------- /src/timeago/locales/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/fi.py -------------------------------------------------------------------------------- /src/timeago/locales/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/fr.py -------------------------------------------------------------------------------- /src/timeago/locales/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/gl.py -------------------------------------------------------------------------------- /src/timeago/locales/guj_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/guj_IN.py -------------------------------------------------------------------------------- /src/timeago/locales/he.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/he.py -------------------------------------------------------------------------------- /src/timeago/locales/hu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/hu.py -------------------------------------------------------------------------------- /src/timeago/locales/import_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/import_locale.py -------------------------------------------------------------------------------- /src/timeago/locales/in_BG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/in_BG.py -------------------------------------------------------------------------------- /src/timeago/locales/in_HI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/in_HI.py -------------------------------------------------------------------------------- /src/timeago/locales/in_ID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/in_ID.py -------------------------------------------------------------------------------- /src/timeago/locales/is.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/is.py -------------------------------------------------------------------------------- /src/timeago/locales/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/it.py -------------------------------------------------------------------------------- /src/timeago/locales/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ja.py -------------------------------------------------------------------------------- /src/timeago/locales/ko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ko.py -------------------------------------------------------------------------------- /src/timeago/locales/lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/lt.py -------------------------------------------------------------------------------- /src/timeago/locales/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ml.py -------------------------------------------------------------------------------- /src/timeago/locales/my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/my.py -------------------------------------------------------------------------------- /src/timeago/locales/nb_NO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/nb_NO.py -------------------------------------------------------------------------------- /src/timeago/locales/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/nl.py -------------------------------------------------------------------------------- /src/timeago/locales/nn_NO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/nn_NO.py -------------------------------------------------------------------------------- /src/timeago/locales/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/pl.py -------------------------------------------------------------------------------- /src/timeago/locales/pt_BR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/pt_BR.py -------------------------------------------------------------------------------- /src/timeago/locales/pt_PT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/pt_PT.py -------------------------------------------------------------------------------- /src/timeago/locales/ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ro.py -------------------------------------------------------------------------------- /src/timeago/locales/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ru.py -------------------------------------------------------------------------------- /src/timeago/locales/sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/sk.py -------------------------------------------------------------------------------- /src/timeago/locales/sv_SE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/sv_SE.py -------------------------------------------------------------------------------- /src/timeago/locales/ta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/ta.py -------------------------------------------------------------------------------- /src/timeago/locales/th.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/th.py -------------------------------------------------------------------------------- /src/timeago/locales/tr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/tr.py -------------------------------------------------------------------------------- /src/timeago/locales/uk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/uk.py -------------------------------------------------------------------------------- /src/timeago/locales/vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/vi.py -------------------------------------------------------------------------------- /src/timeago/locales/zh_CN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/zh_CN.py -------------------------------------------------------------------------------- /src/timeago/locales/zh_TW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/locales/zh_TW.py -------------------------------------------------------------------------------- /src/timeago/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/parser.py -------------------------------------------------------------------------------- /src/timeago/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/src/timeago/setting.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/do_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/test/do_test.sh -------------------------------------------------------------------------------- /test/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/timeago/HEAD/test/testcase.py --------------------------------------------------------------------------------