├── .github └── workflows │ ├── pip_install_unitest.yml │ ├── run_pytests.yml │ ├── test_build.yml │ ├── test_build2.yml │ └── wheelbuilder.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── PyRuSH ├── PyRuSHSentencizer.py ├── RuSH.py ├── StaticSentencizerFun.pyx ├── VERSION ├── __init__.py └── version.py ├── README.MD ├── conf ├── logging.ini └── rush_rules.tsv ├── lib ├── py4j0.10.9.7.jar └── rush-2.0.0.0-jdk1.8-jar-with-dependencies.jar ├── notebooks └── PyRuSH benchmark.ipynb ├── pyproject.toml ├── requirements.txt ├── requirements_jre.txt ├── setup.cfg ├── setup.py └── tests ├── rush_rules.tsv ├── test_PyRushSentencizer.py ├── test_Rush.py └── test_Rush_w_Logger.py /.github/workflows/pip_install_unitest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.github/workflows/pip_install_unitest.yml -------------------------------------------------------------------------------- /.github/workflows/run_pytests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.github/workflows/run_pytests.yml -------------------------------------------------------------------------------- /.github/workflows/test_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.github/workflows/test_build.yml -------------------------------------------------------------------------------- /.github/workflows/test_build2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.github/workflows/test_build2.yml -------------------------------------------------------------------------------- /.github/workflows/wheelbuilder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.github/workflows/wheelbuilder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PyRuSH/PyRuSHSentencizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/PyRuSH/PyRuSHSentencizer.py -------------------------------------------------------------------------------- /PyRuSH/RuSH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/PyRuSH/RuSH.py -------------------------------------------------------------------------------- /PyRuSH/StaticSentencizerFun.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/PyRuSH/StaticSentencizerFun.pyx -------------------------------------------------------------------------------- /PyRuSH/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.9 -------------------------------------------------------------------------------- /PyRuSH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/PyRuSH/__init__.py -------------------------------------------------------------------------------- /PyRuSH/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/PyRuSH/version.py -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/README.MD -------------------------------------------------------------------------------- /conf/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/conf/logging.ini -------------------------------------------------------------------------------- /conf/rush_rules.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/conf/rush_rules.tsv -------------------------------------------------------------------------------- /lib/py4j0.10.9.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/lib/py4j0.10.9.7.jar -------------------------------------------------------------------------------- /lib/rush-2.0.0.0-jdk1.8-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/lib/rush-2.0.0.0-jdk1.8-jar-with-dependencies.jar -------------------------------------------------------------------------------- /notebooks/PyRuSH benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/notebooks/PyRuSH benchmark.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_jre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/requirements_jre.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | 4 | [bdist_wheel] 5 | python-tag=py3 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/setup.py -------------------------------------------------------------------------------- /tests/rush_rules.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/tests/rush_rules.tsv -------------------------------------------------------------------------------- /tests/test_PyRushSentencizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/tests/test_PyRushSentencizer.py -------------------------------------------------------------------------------- /tests/test_Rush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/tests/test_Rush.py -------------------------------------------------------------------------------- /tests/test_Rush_w_Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlins/PyRuSH/HEAD/tests/test_Rush_w_Logger.py --------------------------------------------------------------------------------