├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── workflows │ └── python-app.yml ├── .gitignore ├── .readthedocs.yaml ├── BibaAndBoba ├── __init__.py ├── biba_and_boba.py ├── comparator.py ├── dictionaries │ ├── base_ua.txt │ └── stopwords.txt ├── docs │ ├── Makefile │ ├── README.rst │ ├── assets │ │ ├── BibaAndBoba-logo.png │ │ ├── exporting-0.png │ │ ├── exporting-1.png │ │ ├── exporting-2.png │ │ └── project-structure.png │ ├── make.bat │ ├── requirements-docs.txt │ └── source │ │ ├── BibaAndBoba.rst │ │ ├── conf.py │ │ └── index.rst ├── service │ └── dictionary.py └── utils │ ├── __init__.py │ ├── cacher.py │ ├── languages.py │ ├── logger.py │ ├── nltk_punkt_downloader.py │ ├── progress_bar.py │ ├── reader.py │ └── tokenizer.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── data ├── test_chat_1.json └── test_chat_2.json ├── test_biba_and_boba.py ├── test_comparator.py ├── test_nltk_punkt_downloader.py └── test_reader.py /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /BibaAndBoba/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/__init__.py -------------------------------------------------------------------------------- /BibaAndBoba/biba_and_boba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/biba_and_boba.py -------------------------------------------------------------------------------- /BibaAndBoba/comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/comparator.py -------------------------------------------------------------------------------- /BibaAndBoba/dictionaries/base_ua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/dictionaries/base_ua.txt -------------------------------------------------------------------------------- /BibaAndBoba/dictionaries/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/dictionaries/stopwords.txt -------------------------------------------------------------------------------- /BibaAndBoba/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/Makefile -------------------------------------------------------------------------------- /BibaAndBoba/docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/README.rst -------------------------------------------------------------------------------- /BibaAndBoba/docs/assets/BibaAndBoba-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/assets/BibaAndBoba-logo.png -------------------------------------------------------------------------------- /BibaAndBoba/docs/assets/exporting-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/assets/exporting-0.png -------------------------------------------------------------------------------- /BibaAndBoba/docs/assets/exporting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/assets/exporting-1.png -------------------------------------------------------------------------------- /BibaAndBoba/docs/assets/exporting-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/assets/exporting-2.png -------------------------------------------------------------------------------- /BibaAndBoba/docs/assets/project-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/assets/project-structure.png -------------------------------------------------------------------------------- /BibaAndBoba/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/make.bat -------------------------------------------------------------------------------- /BibaAndBoba/docs/requirements-docs.txt: -------------------------------------------------------------------------------- 1 | sphinx == 5.0.2 2 | furo==2022.6.21 3 | BibaAndBoba 4 | -------------------------------------------------------------------------------- /BibaAndBoba/docs/source/BibaAndBoba.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/source/BibaAndBoba.rst -------------------------------------------------------------------------------- /BibaAndBoba/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/source/conf.py -------------------------------------------------------------------------------- /BibaAndBoba/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/docs/source/index.rst -------------------------------------------------------------------------------- /BibaAndBoba/service/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/service/dictionary.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BibaAndBoba/utils/cacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/cacher.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/languages.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/logger.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/nltk_punkt_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/nltk_punkt_downloader.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/progress_bar.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/reader.py -------------------------------------------------------------------------------- /BibaAndBoba/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/BibaAndBoba/utils/tokenizer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include BibaAndBoba *.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/test_chat_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/data/test_chat_1.json -------------------------------------------------------------------------------- /tests/data/test_chat_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/data/test_chat_2.json -------------------------------------------------------------------------------- /tests/test_biba_and_boba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/test_biba_and_boba.py -------------------------------------------------------------------------------- /tests/test_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/test_comparator.py -------------------------------------------------------------------------------- /tests/test_nltk_punkt_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/test_nltk_punkt_downloader.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andylvua/bibaandboba/HEAD/tests/test_reader.py --------------------------------------------------------------------------------