├── LICENSE ├── README.md ├── adspower ├── __init__.py ├── _api_entity.py ├── _base_category.py ├── _base_group.py ├── _base_http_client.py ├── _base_profile_api.py ├── async_api │ ├── __init__.py │ ├── _base_profile.py │ ├── category.py │ ├── group.py │ ├── http_client.py │ ├── playwright │ │ ├── __init__.py │ │ └── profile.py │ ├── profile_api.py │ └── selenium │ │ ├── __init__.py │ │ └── profile.py ├── exceptions.py ├── sync_api │ ├── __init__.py │ ├── _base_profile.py │ ├── category.py │ ├── group.py │ ├── http_client.py │ ├── playwright │ │ ├── __init__.py │ │ └── profile.py │ ├── profile_api.py │ └── selenium │ │ ├── __init__.py │ │ └── profile.py ├── types.py └── utils.py ├── branding └── adspower │ └── banner.png ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_async_api.py ├── test_sync_api.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/README.md -------------------------------------------------------------------------------- /adspower/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/__init__.py -------------------------------------------------------------------------------- /adspower/_api_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/_api_entity.py -------------------------------------------------------------------------------- /adspower/_base_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/_base_category.py -------------------------------------------------------------------------------- /adspower/_base_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/_base_group.py -------------------------------------------------------------------------------- /adspower/_base_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/_base_http_client.py -------------------------------------------------------------------------------- /adspower/_base_profile_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/_base_profile_api.py -------------------------------------------------------------------------------- /adspower/async_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/__init__.py -------------------------------------------------------------------------------- /adspower/async_api/_base_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/_base_profile.py -------------------------------------------------------------------------------- /adspower/async_api/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/category.py -------------------------------------------------------------------------------- /adspower/async_api/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/group.py -------------------------------------------------------------------------------- /adspower/async_api/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/http_client.py -------------------------------------------------------------------------------- /adspower/async_api/playwright/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/playwright/__init__.py -------------------------------------------------------------------------------- /adspower/async_api/playwright/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/playwright/profile.py -------------------------------------------------------------------------------- /adspower/async_api/profile_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/profile_api.py -------------------------------------------------------------------------------- /adspower/async_api/selenium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/selenium/__init__.py -------------------------------------------------------------------------------- /adspower/async_api/selenium/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/async_api/selenium/profile.py -------------------------------------------------------------------------------- /adspower/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/exceptions.py -------------------------------------------------------------------------------- /adspower/sync_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/__init__.py -------------------------------------------------------------------------------- /adspower/sync_api/_base_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/_base_profile.py -------------------------------------------------------------------------------- /adspower/sync_api/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/category.py -------------------------------------------------------------------------------- /adspower/sync_api/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/group.py -------------------------------------------------------------------------------- /adspower/sync_api/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/http_client.py -------------------------------------------------------------------------------- /adspower/sync_api/playwright/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/playwright/__init__.py -------------------------------------------------------------------------------- /adspower/sync_api/playwright/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/playwright/profile.py -------------------------------------------------------------------------------- /adspower/sync_api/profile_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/profile_api.py -------------------------------------------------------------------------------- /adspower/sync_api/selenium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/selenium/__init__.py -------------------------------------------------------------------------------- /adspower/sync_api/selenium/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/sync_api/selenium/profile.py -------------------------------------------------------------------------------- /adspower/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/types.py -------------------------------------------------------------------------------- /adspower/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/adspower/utils.py -------------------------------------------------------------------------------- /branding/adspower/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/branding/adspower/banner.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_async_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/tests/test_async_api.py -------------------------------------------------------------------------------- /tests/test_sync_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrocoFactory/adspower/HEAD/tests/test_sync_api.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------