├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── site-support-request.yml └── workflows │ ├── other_linting.yml │ ├── publish.yml │ ├── python_linting.yml │ ├── scripts-test.yml │ ├── security.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.json ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── _config.yml ├── bdfrx ├── __init__.py ├── __main__.py ├── bdfrx.db ├── completion.py ├── configuration.py ├── connector.py ├── default_config.cfg ├── download_filter.py ├── downloader.py ├── exceptions.py ├── file_name_formatter.py ├── oauth2.py ├── resource.py ├── site_authenticator.py └── site_downloaders │ ├── __init__.py │ ├── base_downloader.py │ ├── catbox.py │ ├── chevereto.py │ ├── delay_for_reddit.py │ ├── direct.py │ ├── download_factory.py │ ├── erome.py │ ├── fallback_downloaders │ ├── __init__.py │ ├── fallback_downloader.py │ └── ytdlp_fallback.py │ ├── flickr.py │ ├── gallery.py │ ├── gfycat.py │ ├── imgchest.py │ ├── imgur.py │ ├── pornhub.py │ ├── redgifs.py │ ├── self_post.py │ ├── vidble.py │ ├── vreddit.py │ └── youtube.py ├── devscripts ├── configure.ps1 └── configure.sh ├── docs ├── ARCHITECTURE.md ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── opts_example.yaml ├── pyproject.toml ├── scripts ├── README.md ├── extract_failed_ids.ps1 ├── extract_failed_ids.sh ├── extract_successful_ids.ps1 ├── extract_successful_ids.sh ├── print_summary.ps1 ├── print_summary.sh ├── tests │ ├── README.md │ ├── example_logfiles │ │ ├── failed_disabled_module.txt │ │ ├── failed_no_downloader.txt │ │ ├── failed_resource_error.txt │ │ ├── failed_sitedownloader_error.txt │ │ ├── failed_write_error.txt │ │ ├── succeed_already_exists.txt │ │ ├── succeed_download_filter.txt │ │ ├── succeed_downloaded_submission.txt │ │ ├── succeed_hard_link.txt │ │ ├── succeed_resource_hash.txt │ │ └── succeed_score_filter.txt │ ├── extract_failed_ids.Tests.ps1 │ ├── extract_successful_ids.Tests.ps1 │ ├── test_extract_failed_ids.bats │ └── test_extract_successful_ids.bats └── unsaveposts.py └── tests ├── __init__.py ├── conftest.py ├── integration_tests ├── __init__.py └── test_download_integration.py ├── site_downloaders ├── __init__.py ├── fallback_downloaders │ ├── __init__.py │ └── test_ytdlp_fallback.py ├── test_catbox.py ├── test_chevereto.py ├── test_delay_for_reddit.py ├── test_direct.py ├── test_download_factory.py ├── test_erome.py ├── test_flickr.py ├── test_gallery.py ├── test_gfycat.py ├── test_imgchest.py ├── test_imgur.py ├── test_pornhub.py ├── test_redgifs.py ├── test_self_post.py ├── test_vidble.py ├── test_vreddit.py └── test_youtube.py ├── test_completion.py ├── test_configuration.py ├── test_connector.py ├── test_download_filter.py ├── test_downloader.py ├── test_file_name_formatter.py ├── test_oauth2.py ├── test_resource.py └── yaml_test_configuration.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/site-support-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/ISSUE_TEMPLATE/site-support-request.yml -------------------------------------------------------------------------------- /.github/workflows/other_linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/other_linting.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python_linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/python_linting.yml -------------------------------------------------------------------------------- /.github/workflows/scripts-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/scripts-test.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.gitmodules -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/_config.yml -------------------------------------------------------------------------------- /bdfrx/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.10" 2 | -------------------------------------------------------------------------------- /bdfrx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/__main__.py -------------------------------------------------------------------------------- /bdfrx/bdfrx.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/bdfrx.db -------------------------------------------------------------------------------- /bdfrx/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/completion.py -------------------------------------------------------------------------------- /bdfrx/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/configuration.py -------------------------------------------------------------------------------- /bdfrx/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/connector.py -------------------------------------------------------------------------------- /bdfrx/default_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/default_config.cfg -------------------------------------------------------------------------------- /bdfrx/download_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/download_filter.py -------------------------------------------------------------------------------- /bdfrx/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/downloader.py -------------------------------------------------------------------------------- /bdfrx/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/exceptions.py -------------------------------------------------------------------------------- /bdfrx/file_name_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/file_name_formatter.py -------------------------------------------------------------------------------- /bdfrx/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/oauth2.py -------------------------------------------------------------------------------- /bdfrx/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/resource.py -------------------------------------------------------------------------------- /bdfrx/site_authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_authenticator.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bdfrx/site_downloaders/base_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/base_downloader.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/catbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/catbox.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/chevereto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/chevereto.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/delay_for_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/delay_for_reddit.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/direct.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/download_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/download_factory.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/erome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/erome.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/fallback_downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bdfrx/site_downloaders/fallback_downloaders/fallback_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/fallback_downloaders/fallback_downloader.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/fallback_downloaders/ytdlp_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/fallback_downloaders/ytdlp_fallback.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/flickr.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/gallery.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/gfycat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/gfycat.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/imgchest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/imgchest.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/imgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/imgur.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/pornhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/pornhub.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/redgifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/redgifs.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/self_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/self_post.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/vidble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/vidble.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/vreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/vreddit.py -------------------------------------------------------------------------------- /bdfrx/site_downloaders/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/bdfrx/site_downloaders/youtube.py -------------------------------------------------------------------------------- /devscripts/configure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/devscripts/configure.ps1 -------------------------------------------------------------------------------- /devscripts/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/devscripts/configure.sh -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /opts_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/opts_example.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/extract_failed_ids.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/extract_failed_ids.ps1 -------------------------------------------------------------------------------- /scripts/extract_failed_ids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/extract_failed_ids.sh -------------------------------------------------------------------------------- /scripts/extract_successful_ids.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/extract_successful_ids.ps1 -------------------------------------------------------------------------------- /scripts/extract_successful_ids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/extract_successful_ids.sh -------------------------------------------------------------------------------- /scripts/print_summary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/print_summary.ps1 -------------------------------------------------------------------------------- /scripts/print_summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/print_summary.sh -------------------------------------------------------------------------------- /scripts/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/README.md -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/failed_disabled_module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/failed_disabled_module.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/failed_no_downloader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/failed_no_downloader.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/failed_resource_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/failed_resource_error.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/failed_sitedownloader_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/failed_sitedownloader_error.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/failed_write_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/failed_write_error.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_already_exists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_already_exists.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_download_filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_download_filter.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_downloaded_submission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_downloaded_submission.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_hard_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_hard_link.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_resource_hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_resource_hash.txt -------------------------------------------------------------------------------- /scripts/tests/example_logfiles/succeed_score_filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/example_logfiles/succeed_score_filter.txt -------------------------------------------------------------------------------- /scripts/tests/extract_failed_ids.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/extract_failed_ids.Tests.ps1 -------------------------------------------------------------------------------- /scripts/tests/extract_successful_ids.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/extract_successful_ids.Tests.ps1 -------------------------------------------------------------------------------- /scripts/tests/test_extract_failed_ids.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/test_extract_failed_ids.bats -------------------------------------------------------------------------------- /scripts/tests/test_extract_successful_ids.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/tests/test_extract_successful_ids.bats -------------------------------------------------------------------------------- /scripts/unsaveposts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/scripts/unsaveposts.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/test_download_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/integration_tests/test_download_integration.py -------------------------------------------------------------------------------- /tests/site_downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/site_downloaders/fallback_downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/site_downloaders/fallback_downloaders/test_ytdlp_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/fallback_downloaders/test_ytdlp_fallback.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_catbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_catbox.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_chevereto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_chevereto.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_delay_for_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_delay_for_reddit.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_direct.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_download_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_download_factory.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_erome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_erome.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_flickr.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_gallery.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_gfycat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_gfycat.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_imgchest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_imgchest.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_imgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_imgur.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_pornhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_pornhub.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_redgifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_redgifs.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_self_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_self_post.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_vidble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_vidble.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_vreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_vreddit.py -------------------------------------------------------------------------------- /tests/site_downloaders/test_youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/site_downloaders/test_youtube.py -------------------------------------------------------------------------------- /tests/test_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_completion.py -------------------------------------------------------------------------------- /tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_configuration.py -------------------------------------------------------------------------------- /tests/test_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_connector.py -------------------------------------------------------------------------------- /tests/test_download_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_download_filter.py -------------------------------------------------------------------------------- /tests/test_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_downloader.py -------------------------------------------------------------------------------- /tests/test_file_name_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_file_name_formatter.py -------------------------------------------------------------------------------- /tests/test_oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_oauth2.py -------------------------------------------------------------------------------- /tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/test_resource.py -------------------------------------------------------------------------------- /tests/yaml_test_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGARAZER/bulk-downloader-for-reddit-x/HEAD/tests/yaml_test_configuration.yaml --------------------------------------------------------------------------------