├── .codeclimate.yml ├── .github └── workflows │ ├── python-package.yml │ └── pythonpublish.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin └── twitter-ads ├── docs ├── Makefile └── source │ ├── conf.py │ ├── index.rst │ └── twitter_ads │ ├── account.rst │ ├── audience.rst │ ├── campaign.rst │ ├── client.rst │ ├── creative.rst │ ├── cursor.rst │ ├── enum.rst │ ├── error.rst │ ├── http.rst │ ├── index.rst │ ├── resource.rst │ ├── targeting.rst │ └── utils.rst ├── error-hierarchy.png ├── examples ├── account_media.py ├── active_entities.py ├── analytics.py ├── audience_estimate.py ├── batch_request.py ├── batch_tc_from_file.py ├── cards.py ├── cards_fetch.py ├── custom_audience.py ├── draft_tweet.py ├── manual_request.py ├── media_library.py ├── media_upload.py ├── poll_card.py ├── promoted_tweet.py ├── quick_start.py ├── scheduled_tweet.py ├── tailored_audience.py ├── tweet_previews.py └── video_tutorial.py ├── release.sh ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures │ ├── accounts_all.json │ ├── accounts_features.json │ ├── accounts_load.json │ ├── active_entities.json │ ├── analytics_async_get.json │ ├── analytics_async_post.json │ ├── analytics_sync_stats.json │ ├── app_lists_all.json │ ├── app_lists_load.json │ ├── audience_estimate.json │ ├── campaigns_all.json │ ├── campaigns_load.json │ ├── cards_all.json │ ├── cards_load.json │ ├── custom_audiences_all.json │ ├── custom_audiences_load.json │ ├── custom_audiences_permissions_all.json │ ├── funding_instruments_all.json │ ├── funding_instruments_load.json │ ├── line_items_all.json │ ├── line_items_load.json │ ├── placements.json │ ├── promotable_users_all.json │ ├── promotable_users_load.json │ ├── promoted_tweets_all.json │ ├── promoted_tweets_attach.json │ ├── promoted_tweets_load.json │ ├── reach_estimate.json │ ├── tailored_audiences_load.json │ ├── targeted_audiences.json │ ├── tweet_previews.json │ ├── tweets_get.json │ ├── videos_all.json │ └── videos_load.json ├── support.py ├── test_active_entities.py ├── test_analytics_async.py ├── test_analytics_sync.py ├── test_audience_summary.py ├── test_campaign.py ├── test_cards.py ├── test_client.py ├── test_line_item.py ├── test_promoted_tweets.py ├── test_rate_limit.py ├── test_retry_count.py ├── test_targeted_audiences.py ├── test_tweet_previews.py ├── test_tweets_get.py └── test_utils.py └── twitter_ads ├── __init__.py ├── account.py ├── analytics.py ├── audience.py ├── campaign.py ├── client.py ├── creative.py ├── cursor.py ├── enum.py ├── error.py ├── http.py ├── resource.py ├── restapi.py ├── targeting.py └── utils.py /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | prune .DS_Store 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/README.rst -------------------------------------------------------------------------------- /bin/twitter-ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/bin/twitter-ads -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/account.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/audience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/audience.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/campaign.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/campaign.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/client.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/creative.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/creative.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/cursor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/cursor.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/enum.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/error.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/error.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/http.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/index.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/resource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/resource.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/targeting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/targeting.rst -------------------------------------------------------------------------------- /docs/source/twitter_ads/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/docs/source/twitter_ads/utils.rst -------------------------------------------------------------------------------- /error-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/error-hierarchy.png -------------------------------------------------------------------------------- /examples/account_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/account_media.py -------------------------------------------------------------------------------- /examples/active_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/active_entities.py -------------------------------------------------------------------------------- /examples/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/analytics.py -------------------------------------------------------------------------------- /examples/audience_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/audience_estimate.py -------------------------------------------------------------------------------- /examples/batch_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/batch_request.py -------------------------------------------------------------------------------- /examples/batch_tc_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/batch_tc_from_file.py -------------------------------------------------------------------------------- /examples/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/cards.py -------------------------------------------------------------------------------- /examples/cards_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/cards_fetch.py -------------------------------------------------------------------------------- /examples/custom_audience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/custom_audience.py -------------------------------------------------------------------------------- /examples/draft_tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/draft_tweet.py -------------------------------------------------------------------------------- /examples/manual_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/manual_request.py -------------------------------------------------------------------------------- /examples/media_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/media_library.py -------------------------------------------------------------------------------- /examples/media_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/media_upload.py -------------------------------------------------------------------------------- /examples/poll_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/poll_card.py -------------------------------------------------------------------------------- /examples/promoted_tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/promoted_tweet.py -------------------------------------------------------------------------------- /examples/quick_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/quick_start.py -------------------------------------------------------------------------------- /examples/scheduled_tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/scheduled_tweet.py -------------------------------------------------------------------------------- /examples/tailored_audience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/tailored_audience.py -------------------------------------------------------------------------------- /examples/tweet_previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/tweet_previews.py -------------------------------------------------------------------------------- /examples/video_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/examples/video_tutorial.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/release.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/accounts_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/accounts_all.json -------------------------------------------------------------------------------- /tests/fixtures/accounts_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/accounts_features.json -------------------------------------------------------------------------------- /tests/fixtures/accounts_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/accounts_load.json -------------------------------------------------------------------------------- /tests/fixtures/active_entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/active_entities.json -------------------------------------------------------------------------------- /tests/fixtures/analytics_async_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/analytics_async_get.json -------------------------------------------------------------------------------- /tests/fixtures/analytics_async_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/analytics_async_post.json -------------------------------------------------------------------------------- /tests/fixtures/analytics_sync_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/analytics_sync_stats.json -------------------------------------------------------------------------------- /tests/fixtures/app_lists_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/app_lists_all.json -------------------------------------------------------------------------------- /tests/fixtures/app_lists_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/app_lists_load.json -------------------------------------------------------------------------------- /tests/fixtures/audience_estimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/audience_estimate.json -------------------------------------------------------------------------------- /tests/fixtures/campaigns_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/campaigns_all.json -------------------------------------------------------------------------------- /tests/fixtures/campaigns_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/campaigns_load.json -------------------------------------------------------------------------------- /tests/fixtures/cards_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/cards_all.json -------------------------------------------------------------------------------- /tests/fixtures/cards_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/cards_load.json -------------------------------------------------------------------------------- /tests/fixtures/custom_audiences_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/custom_audiences_all.json -------------------------------------------------------------------------------- /tests/fixtures/custom_audiences_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/custom_audiences_load.json -------------------------------------------------------------------------------- /tests/fixtures/custom_audiences_permissions_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/custom_audiences_permissions_all.json -------------------------------------------------------------------------------- /tests/fixtures/funding_instruments_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/funding_instruments_all.json -------------------------------------------------------------------------------- /tests/fixtures/funding_instruments_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/funding_instruments_load.json -------------------------------------------------------------------------------- /tests/fixtures/line_items_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/line_items_all.json -------------------------------------------------------------------------------- /tests/fixtures/line_items_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/line_items_load.json -------------------------------------------------------------------------------- /tests/fixtures/placements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/placements.json -------------------------------------------------------------------------------- /tests/fixtures/promotable_users_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/promotable_users_all.json -------------------------------------------------------------------------------- /tests/fixtures/promotable_users_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/promotable_users_load.json -------------------------------------------------------------------------------- /tests/fixtures/promoted_tweets_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/promoted_tweets_all.json -------------------------------------------------------------------------------- /tests/fixtures/promoted_tweets_attach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/promoted_tweets_attach.json -------------------------------------------------------------------------------- /tests/fixtures/promoted_tweets_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/promoted_tweets_load.json -------------------------------------------------------------------------------- /tests/fixtures/reach_estimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/reach_estimate.json -------------------------------------------------------------------------------- /tests/fixtures/tailored_audiences_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/tailored_audiences_load.json -------------------------------------------------------------------------------- /tests/fixtures/targeted_audiences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/targeted_audiences.json -------------------------------------------------------------------------------- /tests/fixtures/tweet_previews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/tweet_previews.json -------------------------------------------------------------------------------- /tests/fixtures/tweets_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/tweets_get.json -------------------------------------------------------------------------------- /tests/fixtures/videos_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/videos_all.json -------------------------------------------------------------------------------- /tests/fixtures/videos_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/fixtures/videos_load.json -------------------------------------------------------------------------------- /tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/support.py -------------------------------------------------------------------------------- /tests/test_active_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_active_entities.py -------------------------------------------------------------------------------- /tests/test_analytics_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_analytics_async.py -------------------------------------------------------------------------------- /tests/test_analytics_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_analytics_sync.py -------------------------------------------------------------------------------- /tests/test_audience_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_audience_summary.py -------------------------------------------------------------------------------- /tests/test_campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_campaign.py -------------------------------------------------------------------------------- /tests/test_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_cards.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_line_item.py -------------------------------------------------------------------------------- /tests/test_promoted_tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_promoted_tweets.py -------------------------------------------------------------------------------- /tests/test_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_rate_limit.py -------------------------------------------------------------------------------- /tests/test_retry_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_retry_count.py -------------------------------------------------------------------------------- /tests/test_targeted_audiences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_targeted_audiences.py -------------------------------------------------------------------------------- /tests/test_tweet_previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_tweet_previews.py -------------------------------------------------------------------------------- /tests/test_tweets_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_tweets_get.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /twitter_ads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/__init__.py -------------------------------------------------------------------------------- /twitter_ads/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/account.py -------------------------------------------------------------------------------- /twitter_ads/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/analytics.py -------------------------------------------------------------------------------- /twitter_ads/audience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/audience.py -------------------------------------------------------------------------------- /twitter_ads/campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/campaign.py -------------------------------------------------------------------------------- /twitter_ads/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/client.py -------------------------------------------------------------------------------- /twitter_ads/creative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/creative.py -------------------------------------------------------------------------------- /twitter_ads/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/cursor.py -------------------------------------------------------------------------------- /twitter_ads/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/enum.py -------------------------------------------------------------------------------- /twitter_ads/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/error.py -------------------------------------------------------------------------------- /twitter_ads/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/http.py -------------------------------------------------------------------------------- /twitter_ads/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/resource.py -------------------------------------------------------------------------------- /twitter_ads/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/restapi.py -------------------------------------------------------------------------------- /twitter_ads/targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/targeting.py -------------------------------------------------------------------------------- /twitter_ads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/twitter-python-ads-sdk/HEAD/twitter_ads/utils.py --------------------------------------------------------------------------------