├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── requirements.txt └── tests.py └── timestring ├── Date.py ├── Range.py ├── __init__.py ├── text2num.py └── timestring_re.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytz>=2013b 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/tests/tests.py -------------------------------------------------------------------------------- /timestring/Date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/timestring/Date.py -------------------------------------------------------------------------------- /timestring/Range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/timestring/Range.py -------------------------------------------------------------------------------- /timestring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/timestring/__init__.py -------------------------------------------------------------------------------- /timestring/text2num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/timestring/text2num.py -------------------------------------------------------------------------------- /timestring/timestring_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/timestring/HEAD/timestring/timestring_re.py --------------------------------------------------------------------------------