├── .env.example ├── .flake8 ├── .gitattributes ├── .github ├── actions │ ├── linux │ │ └── action.yaml │ └── windows │ │ └── action.yaml ├── dependabot.yml └── workflows │ ├── ci_linux.yml │ ├── ci_windows.yml │ └── static.yml ├── .gitignore ├── .pydocstyle.ini ├── .pypi └── README.md ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── PROMO.md ├── README.md ├── bas_release ├── .gitkeep └── PyBasFree.zip ├── cmd_initial.py ├── cmd_worker.py ├── codecov.yml ├── docs └── images │ ├── bas_gui_window_1.png │ ├── bas_gui_window_1_proxy.png │ ├── bas_gui_window_2.png │ └── bas_gui_window_3.png ├── logs └── .gitkeep ├── poetry.lock ├── pybas_automation ├── __init__.py ├── bas_actions │ ├── __init__.py │ ├── browser │ │ ├── __init__.py │ │ ├── browser_settings │ │ │ ├── __init__.py │ │ │ └── models.py │ │ └── proxy │ │ │ ├── __init__.py │ │ │ └── models.py │ └── fingerprint_switcher │ │ ├── __init__.py │ │ └── apply_fingerprint │ │ ├── __init__.py │ │ └── models.py ├── browser_automator │ ├── __init__.py │ ├── browser_automator.py │ ├── cdp_client.py │ └── models.py ├── browser_profile │ ├── __init__.py │ ├── models.py │ ├── proxy.py │ ├── settings.py │ └── storage.py ├── fingerprint │ ├── __init__.py │ ├── fingerprint.py │ └── models.py ├── proxy_providers │ ├── __init__.py │ └── brightdata │ │ ├── __init__.py │ │ └── models.py ├── settings.py ├── task │ ├── __init__.py │ ├── models.py │ ├── settings.py │ └── storage.py └── utils │ ├── __init__.py │ ├── filesystem.py │ ├── logger.py │ └── utils.py ├── pyproject.toml ├── reports └── .gitkeep ├── scripts └── update_readme_links.py └── tests ├── __init__.py ├── conftest.py ├── contrib ├── __init__.py └── socks5_server │ ├── __init__.py │ └── server.py ├── e2e ├── __init__.py ├── basic │ └── test_basic.py └── conftest.py ├── fixtures ├── Actual.PyBasFreeTemplate.xml.default.xml └── fingerprint_raw.zip └── functional ├── __init__.py ├── browser_automator └── test_browser_automator.py ├── browser_profile ├── __init__.py ├── cassettes │ ├── TestBrowserProfile.test_save_all.yaml │ ├── TestBrowserProfile.test_save_fingerprint.yaml │ ├── TestBrowserProfileStorage.test_create_no_fingerprint.yaml │ ├── TestBrowserProfileStorage.test_create_with_profile_name.yaml │ └── TestBrowserProfileStorage.test_serialize_deserialize.yaml ├── test_browser_profile.py ├── test_browser_profile_proxy.py └── test_browser_profile_storage.py ├── cmd ├── __init__.py ├── cassettes │ ├── TestCmdInitial.test_main.yaml │ ├── TestCmdInitial.test_main_proxy.yaml │ ├── TestCmdWorker.test_main.yaml │ └── TestCmdWorker.test_main_proxy.yaml ├── test_cmd_initial.py └── test_cmd_worker.py ├── conftest.py ├── fingerprint ├── __init__.py ├── cassettes │ └── TestFingerprint.test_get_fingerprint.yaml └── test_fingerprint.py ├── proxy_providers ├── __init__.py └── brightdata │ ├── __init__.py │ └── test_brightdata.py └── task ├── __init__.py ├── conftest.py └── test_storage.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/linux/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/actions/linux/action.yaml -------------------------------------------------------------------------------- /.github/actions/windows/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/actions/windows/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/workflows/ci_linux.yml -------------------------------------------------------------------------------- /.github/workflows/ci_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/workflows/ci_windows.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.pydocstyle.ini -------------------------------------------------------------------------------- /.pypi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/.pypi/README.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/Makefile -------------------------------------------------------------------------------- /PROMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/PROMO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/README.md -------------------------------------------------------------------------------- /bas_release/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bas_release/PyBasFree.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/bas_release/PyBasFree.zip -------------------------------------------------------------------------------- /cmd_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/cmd_initial.py -------------------------------------------------------------------------------- /cmd_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/cmd_worker.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/images/bas_gui_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/docs/images/bas_gui_window_1.png -------------------------------------------------------------------------------- /docs/images/bas_gui_window_1_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/docs/images/bas_gui_window_1_proxy.png -------------------------------------------------------------------------------- /docs/images/bas_gui_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/docs/images/bas_gui_window_2.png -------------------------------------------------------------------------------- /docs/images/bas_gui_window_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/docs/images/bas_gui_window_3.png -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/poetry.lock -------------------------------------------------------------------------------- /pybas_automation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/__init__.py: -------------------------------------------------------------------------------- 1 | """Implements settings of BAS actions.""" 2 | -------------------------------------------------------------------------------- /pybas_automation/bas_actions/browser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/browser/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/browser/browser_settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/browser/browser_settings/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/browser/browser_settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/browser/browser_settings/models.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/browser/proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/browser/proxy/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/browser/proxy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/browser/proxy/models.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/fingerprint_switcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/fingerprint_switcher/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/fingerprint_switcher/apply_fingerprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/fingerprint_switcher/apply_fingerprint/__init__.py -------------------------------------------------------------------------------- /pybas_automation/bas_actions/fingerprint_switcher/apply_fingerprint/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/bas_actions/fingerprint_switcher/apply_fingerprint/models.py -------------------------------------------------------------------------------- /pybas_automation/browser_automator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_automator/__init__.py -------------------------------------------------------------------------------- /pybas_automation/browser_automator/browser_automator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_automator/browser_automator.py -------------------------------------------------------------------------------- /pybas_automation/browser_automator/cdp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_automator/cdp_client.py -------------------------------------------------------------------------------- /pybas_automation/browser_automator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_automator/models.py -------------------------------------------------------------------------------- /pybas_automation/browser_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_profile/__init__.py -------------------------------------------------------------------------------- /pybas_automation/browser_profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_profile/models.py -------------------------------------------------------------------------------- /pybas_automation/browser_profile/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_profile/proxy.py -------------------------------------------------------------------------------- /pybas_automation/browser_profile/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_profile/settings.py -------------------------------------------------------------------------------- /pybas_automation/browser_profile/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/browser_profile/storage.py -------------------------------------------------------------------------------- /pybas_automation/fingerprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/fingerprint/__init__.py -------------------------------------------------------------------------------- /pybas_automation/fingerprint/fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/fingerprint/fingerprint.py -------------------------------------------------------------------------------- /pybas_automation/fingerprint/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/fingerprint/models.py -------------------------------------------------------------------------------- /pybas_automation/proxy_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybas_automation/proxy_providers/brightdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/proxy_providers/brightdata/__init__.py -------------------------------------------------------------------------------- /pybas_automation/proxy_providers/brightdata/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/proxy_providers/brightdata/models.py -------------------------------------------------------------------------------- /pybas_automation/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/settings.py -------------------------------------------------------------------------------- /pybas_automation/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/task/__init__.py -------------------------------------------------------------------------------- /pybas_automation/task/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/task/models.py -------------------------------------------------------------------------------- /pybas_automation/task/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/task/settings.py -------------------------------------------------------------------------------- /pybas_automation/task/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/task/storage.py -------------------------------------------------------------------------------- /pybas_automation/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/utils/__init__.py -------------------------------------------------------------------------------- /pybas_automation/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/utils/filesystem.py -------------------------------------------------------------------------------- /pybas_automation/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/utils/logger.py -------------------------------------------------------------------------------- /pybas_automation/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pybas_automation/utils/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/update_readme_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/scripts/update_readme_links.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/socks5_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/socks5_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/contrib/socks5_server/server.py -------------------------------------------------------------------------------- /tests/e2e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/e2e/__init__.py -------------------------------------------------------------------------------- /tests/e2e/basic/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/e2e/basic/test_basic.py -------------------------------------------------------------------------------- /tests/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/e2e/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/Actual.PyBasFreeTemplate.xml.default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/fixtures/Actual.PyBasFreeTemplate.xml.default.xml -------------------------------------------------------------------------------- /tests/fixtures/fingerprint_raw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/fixtures/fingerprint_raw.zip -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/browser_automator/test_browser_automator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_automator/test_browser_automator.py -------------------------------------------------------------------------------- /tests/functional/browser_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/browser_profile/cassettes/TestBrowserProfile.test_save_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/cassettes/TestBrowserProfile.test_save_all.yaml -------------------------------------------------------------------------------- /tests/functional/browser_profile/cassettes/TestBrowserProfile.test_save_fingerprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/cassettes/TestBrowserProfile.test_save_fingerprint.yaml -------------------------------------------------------------------------------- /tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_create_no_fingerprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_create_no_fingerprint.yaml -------------------------------------------------------------------------------- /tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_create_with_profile_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_create_with_profile_name.yaml -------------------------------------------------------------------------------- /tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_serialize_deserialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/cassettes/TestBrowserProfileStorage.test_serialize_deserialize.yaml -------------------------------------------------------------------------------- /tests/functional/browser_profile/test_browser_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/test_browser_profile.py -------------------------------------------------------------------------------- /tests/functional/browser_profile/test_browser_profile_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/test_browser_profile_proxy.py -------------------------------------------------------------------------------- /tests/functional/browser_profile/test_browser_profile_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/browser_profile/test_browser_profile_storage.py -------------------------------------------------------------------------------- /tests/functional/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/cmd/cassettes/TestCmdInitial.test_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/cassettes/TestCmdInitial.test_main.yaml -------------------------------------------------------------------------------- /tests/functional/cmd/cassettes/TestCmdInitial.test_main_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/cassettes/TestCmdInitial.test_main_proxy.yaml -------------------------------------------------------------------------------- /tests/functional/cmd/cassettes/TestCmdWorker.test_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/cassettes/TestCmdWorker.test_main.yaml -------------------------------------------------------------------------------- /tests/functional/cmd/cassettes/TestCmdWorker.test_main_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/cassettes/TestCmdWorker.test_main_proxy.yaml -------------------------------------------------------------------------------- /tests/functional/cmd/test_cmd_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/test_cmd_initial.py -------------------------------------------------------------------------------- /tests/functional/cmd/test_cmd_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/cmd/test_cmd_worker.py -------------------------------------------------------------------------------- /tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/conftest.py -------------------------------------------------------------------------------- /tests/functional/fingerprint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/fingerprint/cassettes/TestFingerprint.test_get_fingerprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/fingerprint/cassettes/TestFingerprint.test_get_fingerprint.yaml -------------------------------------------------------------------------------- /tests/functional/fingerprint/test_fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/fingerprint/test_fingerprint.py -------------------------------------------------------------------------------- /tests/functional/proxy_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/proxy_providers/brightdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/proxy_providers/brightdata/test_brightdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/proxy_providers/brightdata/test_brightdata.py -------------------------------------------------------------------------------- /tests/functional/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/task/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/task/conftest.py -------------------------------------------------------------------------------- /tests/functional/task/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergerdn/py-bas-automation/HEAD/tests/functional/task/test_storage.py --------------------------------------------------------------------------------