├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── data ├── metadata.yml ├── plugins │ └── link_pks.py └── templates │ └── _table-vk-posts.html ├── poetry.lock ├── pyproject.toml ├── research ├── Russian Coverage of the ZNPP.md ├── russian_coverage_znpp1.png ├── russian_coverage_znpp2.png └── russian_coverage_znpp3.png ├── spevktator ├── __init__.py ├── __main__.py ├── cli.py ├── dostoevsky_sentiment.py ├── natasha_entities.py ├── scraper.py └── utils.py └── tests ├── test_spevktator.py └── vk_life.html /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/README.md -------------------------------------------------------------------------------- /data/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/data/metadata.yml -------------------------------------------------------------------------------- /data/plugins/link_pks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/data/plugins/link_pks.py -------------------------------------------------------------------------------- /data/templates/_table-vk-posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/data/templates/_table-vk-posts.html -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /research/Russian Coverage of the ZNPP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/research/Russian Coverage of the ZNPP.md -------------------------------------------------------------------------------- /research/russian_coverage_znpp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/research/russian_coverage_znpp1.png -------------------------------------------------------------------------------- /research/russian_coverage_znpp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/research/russian_coverage_znpp2.png -------------------------------------------------------------------------------- /research/russian_coverage_znpp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/research/russian_coverage_znpp3.png -------------------------------------------------------------------------------- /spevktator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spevktator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/__main__.py -------------------------------------------------------------------------------- /spevktator/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/cli.py -------------------------------------------------------------------------------- /spevktator/dostoevsky_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/dostoevsky_sentiment.py -------------------------------------------------------------------------------- /spevktator/natasha_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/natasha_entities.py -------------------------------------------------------------------------------- /spevktator/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/scraper.py -------------------------------------------------------------------------------- /spevktator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/spevktator/utils.py -------------------------------------------------------------------------------- /tests/test_spevktator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/tests/test_spevktator.py -------------------------------------------------------------------------------- /tests/vk_life.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MischaU8/spevktator/HEAD/tests/vk_life.html --------------------------------------------------------------------------------