├── .env.example ├── .flake8 ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── cron_integrationtests.yml │ ├── integrationtests.yml │ ├── lint.yml │ ├── packagetest.yml │ ├── publish-pypi-test.yml │ ├── publish-pypi.yml │ └── unittests.yml ├── .gitignore ├── .pylintrc ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── config.json ├── config.json.example ├── dev-requirements.txt ├── docs ├── pinterest │ ├── .pages │ ├── README.md │ ├── ads.ad_accounts.md │ ├── ads.ad_groups.md │ ├── ads.ads.md │ ├── ads.audiences.md │ ├── ads.campaigns.md │ ├── ads.conversion_events.md │ ├── ads.conversion_tags.md │ ├── ads.customer_lists.md │ ├── ads.keywords.md │ ├── ads.md │ ├── client.md │ ├── organic.boards.md │ ├── organic.md │ ├── organic.pins.md │ ├── utils.base_model.md │ ├── utils.bookmark.md │ ├── utils.error_handling.md │ ├── utils.load_json_config.md │ ├── utils.md │ ├── utils.refresh_access_token.md │ └── utils.sdk_exceptions.md └── utils │ ├── README.md │ ├── python-sdk-doc.yaml │ ├── script.py │ └── skeleton-spec.yaml ├── integration_tests ├── __init__.py ├── ads │ ├── __init__.py │ ├── test_ad_accounts.py │ ├── test_ad_groups.py │ ├── test_ads.py │ ├── test_audiences.py │ ├── test_campaigns.py │ ├── test_conversion_events.py │ ├── test_conversion_tags.py │ ├── test_customer_lists.py │ └── test_keywords.py ├── base_test.py ├── clean_organic_data.py ├── client │ └── test_client.py ├── config.py ├── organic │ ├── test_boards.py │ └── test_pins.py ├── test_pinterest_base_model.py └── utils │ ├── ads_utils.py │ └── organic_utils.py ├── package_test ├── main.py └── run.sh ├── pinterest ├── __init__.py ├── ads │ ├── __init__.py │ ├── ad_accounts.py │ ├── ad_groups.py │ ├── ads.py │ ├── audiences.py │ ├── campaigns.py │ ├── conversion_events.py │ ├── conversion_tags.py │ ├── customer_lists.py │ └── keywords.py ├── bin │ ├── __init__.py │ └── get_config.py ├── client │ └── __init__.py ├── config.py ├── organic │ ├── __init__.py │ ├── boards.py │ └── pins.py ├── utils │ ├── __init__.py │ ├── base_model.py │ ├── bookmark.py │ ├── error_handling.py │ ├── load_json_config.py │ ├── refresh_access_token.py │ └── sdk_exceptions.py └── version.py ├── pytest.ini ├── requirements.txt ├── samples ├── .gitkeep ├── create_ad.py ├── create_adgroup.py ├── create_audience.py ├── create_campaign.py ├── create_customer_list.py └── create_keyword.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── src ├── __init__.py └── pinterest ├── __init__.py ├── ads ├── test_ad_accounts.py ├── test_ad_groups.py ├── test_ads.py ├── test_audiences.py ├── test_campaigns.py ├── test_conversion_events.py ├── test_conversion_tags.py ├── test_customer_lists.py └── test_keywords.py ├── bin └── get_config_test.py ├── client └── client_test.py ├── organic ├── test_boards.py └── test_pins.py └── utils ├── __init__.py ├── test_error_handling.py └── test_load_json_config.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cron_integrationtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/cron_integrationtests.yml -------------------------------------------------------------------------------- /.github/workflows/integrationtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/integrationtests.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/packagetest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/packagetest.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/publish-pypi-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/.pylintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | {"state":"package_test"} 2 | -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/config.json.example -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/pinterest/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/.pages -------------------------------------------------------------------------------- /docs/pinterest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/README.md -------------------------------------------------------------------------------- /docs/pinterest/ads.ad_accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.ad_accounts.md -------------------------------------------------------------------------------- /docs/pinterest/ads.ad_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.ad_groups.md -------------------------------------------------------------------------------- /docs/pinterest/ads.ads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.ads.md -------------------------------------------------------------------------------- /docs/pinterest/ads.audiences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.audiences.md -------------------------------------------------------------------------------- /docs/pinterest/ads.campaigns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.campaigns.md -------------------------------------------------------------------------------- /docs/pinterest/ads.conversion_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.conversion_events.md -------------------------------------------------------------------------------- /docs/pinterest/ads.conversion_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.conversion_tags.md -------------------------------------------------------------------------------- /docs/pinterest/ads.customer_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.customer_lists.md -------------------------------------------------------------------------------- /docs/pinterest/ads.keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.keywords.md -------------------------------------------------------------------------------- /docs/pinterest/ads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/ads.md -------------------------------------------------------------------------------- /docs/pinterest/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/client.md -------------------------------------------------------------------------------- /docs/pinterest/organic.boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/organic.boards.md -------------------------------------------------------------------------------- /docs/pinterest/organic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/organic.md -------------------------------------------------------------------------------- /docs/pinterest/organic.pins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/organic.pins.md -------------------------------------------------------------------------------- /docs/pinterest/utils.base_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.base_model.md -------------------------------------------------------------------------------- /docs/pinterest/utils.bookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.bookmark.md -------------------------------------------------------------------------------- /docs/pinterest/utils.error_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.error_handling.md -------------------------------------------------------------------------------- /docs/pinterest/utils.load_json_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.load_json_config.md -------------------------------------------------------------------------------- /docs/pinterest/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.md -------------------------------------------------------------------------------- /docs/pinterest/utils.refresh_access_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.refresh_access_token.md -------------------------------------------------------------------------------- /docs/pinterest/utils.sdk_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/pinterest/utils.sdk_exceptions.md -------------------------------------------------------------------------------- /docs/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/utils/README.md -------------------------------------------------------------------------------- /docs/utils/python-sdk-doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/utils/python-sdk-doc.yaml -------------------------------------------------------------------------------- /docs/utils/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/utils/script.py -------------------------------------------------------------------------------- /docs/utils/skeleton-spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/docs/utils/skeleton-spec.yaml -------------------------------------------------------------------------------- /integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/ads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/ads/test_ad_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_ad_accounts.py -------------------------------------------------------------------------------- /integration_tests/ads/test_ad_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_ad_groups.py -------------------------------------------------------------------------------- /integration_tests/ads/test_ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_ads.py -------------------------------------------------------------------------------- /integration_tests/ads/test_audiences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_audiences.py -------------------------------------------------------------------------------- /integration_tests/ads/test_campaigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_campaigns.py -------------------------------------------------------------------------------- /integration_tests/ads/test_conversion_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_conversion_events.py -------------------------------------------------------------------------------- /integration_tests/ads/test_conversion_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_conversion_tags.py -------------------------------------------------------------------------------- /integration_tests/ads/test_customer_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_customer_lists.py -------------------------------------------------------------------------------- /integration_tests/ads/test_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/ads/test_keywords.py -------------------------------------------------------------------------------- /integration_tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/base_test.py -------------------------------------------------------------------------------- /integration_tests/clean_organic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/clean_organic_data.py -------------------------------------------------------------------------------- /integration_tests/client/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/client/test_client.py -------------------------------------------------------------------------------- /integration_tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/config.py -------------------------------------------------------------------------------- /integration_tests/organic/test_boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/organic/test_boards.py -------------------------------------------------------------------------------- /integration_tests/organic/test_pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/organic/test_pins.py -------------------------------------------------------------------------------- /integration_tests/test_pinterest_base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/test_pinterest_base_model.py -------------------------------------------------------------------------------- /integration_tests/utils/ads_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/utils/ads_utils.py -------------------------------------------------------------------------------- /integration_tests/utils/organic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/integration_tests/utils/organic_utils.py -------------------------------------------------------------------------------- /package_test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/package_test/main.py -------------------------------------------------------------------------------- /package_test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/package_test/run.sh -------------------------------------------------------------------------------- /pinterest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/__init__.py -------------------------------------------------------------------------------- /pinterest/ads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pinterest/ads/ad_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/ad_accounts.py -------------------------------------------------------------------------------- /pinterest/ads/ad_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/ad_groups.py -------------------------------------------------------------------------------- /pinterest/ads/ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/ads.py -------------------------------------------------------------------------------- /pinterest/ads/audiences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/audiences.py -------------------------------------------------------------------------------- /pinterest/ads/campaigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/campaigns.py -------------------------------------------------------------------------------- /pinterest/ads/conversion_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/conversion_events.py -------------------------------------------------------------------------------- /pinterest/ads/conversion_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/conversion_tags.py -------------------------------------------------------------------------------- /pinterest/ads/customer_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/customer_lists.py -------------------------------------------------------------------------------- /pinterest/ads/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/ads/keywords.py -------------------------------------------------------------------------------- /pinterest/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pinterest/bin/get_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/bin/get_config.py -------------------------------------------------------------------------------- /pinterest/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/client/__init__.py -------------------------------------------------------------------------------- /pinterest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/config.py -------------------------------------------------------------------------------- /pinterest/organic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pinterest/organic/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/organic/boards.py -------------------------------------------------------------------------------- /pinterest/organic/pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/organic/pins.py -------------------------------------------------------------------------------- /pinterest/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pinterest/utils/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/base_model.py -------------------------------------------------------------------------------- /pinterest/utils/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/bookmark.py -------------------------------------------------------------------------------- /pinterest/utils/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/error_handling.py -------------------------------------------------------------------------------- /pinterest/utils/load_json_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/load_json_config.py -------------------------------------------------------------------------------- /pinterest/utils/refresh_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/refresh_access_token.py -------------------------------------------------------------------------------- /pinterest/utils/sdk_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/utils/sdk_exceptions.py -------------------------------------------------------------------------------- /pinterest/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/pinterest/version.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/create_ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_ad.py -------------------------------------------------------------------------------- /samples/create_adgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_adgroup.py -------------------------------------------------------------------------------- /samples/create_audience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_audience.py -------------------------------------------------------------------------------- /samples/create_campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_campaign.py -------------------------------------------------------------------------------- /samples/create_customer_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_customer_list.py -------------------------------------------------------------------------------- /samples/create_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/samples/create_keyword.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/pinterest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_ad_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_ad_accounts.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_ad_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_ad_groups.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_ads.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_audiences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_audiences.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_campaigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_campaigns.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_conversion_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_conversion_events.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_conversion_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_conversion_tags.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_customer_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_customer_lists.py -------------------------------------------------------------------------------- /tests/src/pinterest/ads/test_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/ads/test_keywords.py -------------------------------------------------------------------------------- /tests/src/pinterest/bin/get_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/bin/get_config_test.py -------------------------------------------------------------------------------- /tests/src/pinterest/client/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/client/client_test.py -------------------------------------------------------------------------------- /tests/src/pinterest/organic/test_boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/organic/test_boards.py -------------------------------------------------------------------------------- /tests/src/pinterest/organic/test_pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/organic/test_pins.py -------------------------------------------------------------------------------- /tests/src/pinterest/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/pinterest/utils/test_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/utils/test_error_handling.py -------------------------------------------------------------------------------- /tests/src/pinterest/utils/test_load_json_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinterest/pinterest-python-sdk/HEAD/tests/src/pinterest/utils/test_load_json_config.py --------------------------------------------------------------------------------