├── .editorconfig ├── .flake_master ├── .github └── workflows │ ├── build.yml │ ├── build_pr.yml │ └── publish.yml ├── .gitignore ├── .vocabulary ├── LICENSE ├── Makefile ├── README.md ├── docs_img └── rozental_book.jpg ├── requirements.txt ├── rozental_as_a_service ├── __init__.py ├── args_utils.py ├── ast_utils.py ├── common_types.py ├── config.py ├── config_utils.py ├── data │ ├── __init__.py │ ├── en.tar.gz │ ├── prepare_data.sh │ ├── prepare_word_count.py │ └── ru.tar.gz ├── db_utils.py ├── extractors_utils.py ├── files_utils.py ├── list_utils.py ├── logging_urils.py ├── obscene_utils.py ├── rozental.py ├── strings_extractors.py ├── text_utils.py └── typos_backends.py ├── setup.cfg ├── setup.py └── tests ├── conftest.py ├── test_args_utils.py ├── test_config_utils.py ├── test_files ├── .vocabulary ├── src_for_strings_extractors │ ├── src_html │ ├── src_js │ ├── src_markdown │ ├── src_po │ └── src_python └── src_with_typos.py ├── test_files_utils.py ├── test_integrational.py ├── test_list_utils.py ├── test_strings_extractors.py └── test_text_utils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.flake_master -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.github/workflows/build_pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.gitignore -------------------------------------------------------------------------------- /.vocabulary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/.vocabulary -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/README.md -------------------------------------------------------------------------------- /docs_img/rozental_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/docs_img/rozental_book.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/requirements.txt -------------------------------------------------------------------------------- /rozental_as_a_service/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.2.2' 2 | -------------------------------------------------------------------------------- /rozental_as_a_service/args_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/args_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/ast_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/ast_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/common_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/common_types.py -------------------------------------------------------------------------------- /rozental_as_a_service/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/config.py -------------------------------------------------------------------------------- /rozental_as_a_service/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/config_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rozental_as_a_service/data/en.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/data/en.tar.gz -------------------------------------------------------------------------------- /rozental_as_a_service/data/prepare_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/data/prepare_data.sh -------------------------------------------------------------------------------- /rozental_as_a_service/data/prepare_word_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/data/prepare_word_count.py -------------------------------------------------------------------------------- /rozental_as_a_service/data/ru.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/data/ru.tar.gz -------------------------------------------------------------------------------- /rozental_as_a_service/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/db_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/extractors_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/extractors_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/files_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/files_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/list_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/list_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/logging_urils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/logging_urils.py -------------------------------------------------------------------------------- /rozental_as_a_service/obscene_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/obscene_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/rozental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/rozental.py -------------------------------------------------------------------------------- /rozental_as_a_service/strings_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/strings_extractors.py -------------------------------------------------------------------------------- /rozental_as_a_service/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/text_utils.py -------------------------------------------------------------------------------- /rozental_as_a_service/typos_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/rozental_as_a_service/typos_backends.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_args_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_args_utils.py -------------------------------------------------------------------------------- /tests/test_config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_config_utils.py -------------------------------------------------------------------------------- /tests/test_files/.vocabulary: -------------------------------------------------------------------------------- 1 | ркеламную 2 | -------------------------------------------------------------------------------- /tests/test_files/src_for_strings_extractors/src_html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_for_strings_extractors/src_html -------------------------------------------------------------------------------- /tests/test_files/src_for_strings_extractors/src_js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_for_strings_extractors/src_js -------------------------------------------------------------------------------- /tests/test_files/src_for_strings_extractors/src_markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_for_strings_extractors/src_markdown -------------------------------------------------------------------------------- /tests/test_files/src_for_strings_extractors/src_po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_for_strings_extractors/src_po -------------------------------------------------------------------------------- /tests/test_files/src_for_strings_extractors/src_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_for_strings_extractors/src_python -------------------------------------------------------------------------------- /tests/test_files/src_with_typos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files/src_with_typos.py -------------------------------------------------------------------------------- /tests/test_files_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_files_utils.py -------------------------------------------------------------------------------- /tests/test_integrational.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_integrational.py -------------------------------------------------------------------------------- /tests/test_list_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_list_utils.py -------------------------------------------------------------------------------- /tests/test_strings_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_strings_extractors.py -------------------------------------------------------------------------------- /tests/test_text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melevir/rozental_as_a_service/HEAD/tests/test_text_utils.py --------------------------------------------------------------------------------