├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── assets ├── head.svg ├── logo.ico └── user_agreement.txt ├── boosty ├── __init__.py ├── api.py ├── defs.py └── wrappers │ ├── __init__.py │ ├── media_pool.py │ ├── post.py │ └── post_pool.py ├── config.yml.example ├── core ├── __init__.py ├── config.py ├── defs.py ├── downloader.py ├── exceptions.py ├── launchers.py ├── logger.py ├── meta.py ├── post_mapping │ ├── __init__.py │ ├── db.py │ └── utils.py ├── stat_tracker.py ├── sync_data.py └── utils.py ├── get_cookie_unminify.js ├── main.py ├── requirements.txt ├── tests ├── __init__.py ├── test_boosty │ ├── __init__.py │ ├── test_api.py │ └── test_wrappers │ │ ├── __init__.py │ │ ├── test_media_pool.py │ │ └── test_post.py └── test_core │ ├── __init__.py │ ├── test_meta.py │ ├── test_stat_tracker.py │ ├── test_sync_data.py │ └── test_utils.py └── welcome.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/README.md -------------------------------------------------------------------------------- /assets/head.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/assets/head.svg -------------------------------------------------------------------------------- /assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/assets/logo.ico -------------------------------------------------------------------------------- /assets/user_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/assets/user_agreement.txt -------------------------------------------------------------------------------- /boosty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boosty/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/boosty/api.py -------------------------------------------------------------------------------- /boosty/defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/boosty/defs.py -------------------------------------------------------------------------------- /boosty/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boosty/wrappers/media_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/boosty/wrappers/media_pool.py -------------------------------------------------------------------------------- /boosty/wrappers/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/boosty/wrappers/post.py -------------------------------------------------------------------------------- /boosty/wrappers/post_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/boosty/wrappers/post_pool.py -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/config.yml.example -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/config.py -------------------------------------------------------------------------------- /core/defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/defs.py -------------------------------------------------------------------------------- /core/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/downloader.py -------------------------------------------------------------------------------- /core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/exceptions.py -------------------------------------------------------------------------------- /core/launchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/launchers.py -------------------------------------------------------------------------------- /core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/logger.py -------------------------------------------------------------------------------- /core/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/meta.py -------------------------------------------------------------------------------- /core/post_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/post_mapping/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/post_mapping/db.py -------------------------------------------------------------------------------- /core/post_mapping/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/post_mapping/utils.py -------------------------------------------------------------------------------- /core/stat_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/stat_tracker.py -------------------------------------------------------------------------------- /core/sync_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/sync_data.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/core/utils.py -------------------------------------------------------------------------------- /get_cookie_unminify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/get_cookie_unminify.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_boosty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_boosty/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_boosty/test_api.py -------------------------------------------------------------------------------- /tests/test_boosty/test_wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_boosty/test_wrappers/test_media_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_boosty/test_wrappers/test_media_pool.py -------------------------------------------------------------------------------- /tests/test_boosty/test_wrappers/test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_boosty/test_wrappers/test_post.py -------------------------------------------------------------------------------- /tests/test_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_core/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_core/test_meta.py -------------------------------------------------------------------------------- /tests/test_core/test_stat_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_core/test_stat_tracker.py -------------------------------------------------------------------------------- /tests/test_core/test_sync_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_core/test_sync_data.py -------------------------------------------------------------------------------- /tests/test_core/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/tests/test_core/test_utils.py -------------------------------------------------------------------------------- /welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowfc/boosty_downloader/HEAD/welcome.py --------------------------------------------------------------------------------