├── .gitignore ├── LunarSolarConverter.py ├── README.md ├── RangeTimeEnum.py ├── StringPreHandler.py ├── Test.py ├── TimeNormalizer.py ├── TimePoint.py ├── TimeUnit.py ├── __init__.py ├── resource ├── __init__.py ├── holi_lunar.json ├── holi_solar.json ├── reg.pkl └── regex.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/.gitignore -------------------------------------------------------------------------------- /LunarSolarConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/LunarSolarConverter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/README.md -------------------------------------------------------------------------------- /RangeTimeEnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/RangeTimeEnum.py -------------------------------------------------------------------------------- /StringPreHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/StringPreHandler.py -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/Test.py -------------------------------------------------------------------------------- /TimeNormalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/TimeNormalizer.py -------------------------------------------------------------------------------- /TimePoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/TimePoint.py -------------------------------------------------------------------------------- /TimeUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/TimeUnit.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/__init__.py -------------------------------------------------------------------------------- /resource/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/resource/__init__.py -------------------------------------------------------------------------------- /resource/holi_lunar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/resource/holi_lunar.json -------------------------------------------------------------------------------- /resource/holi_solar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/resource/holi_solar.json -------------------------------------------------------------------------------- /resource/reg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/resource/reg.pkl -------------------------------------------------------------------------------- /resource/regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/resource/regex.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhanzecheng/Time_NLP/HEAD/setup.py --------------------------------------------------------------------------------