├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── Rakefile ├── lib ├── __init__.py └── createsend │ ├── __init__.py │ ├── administrator.py │ ├── cacert.pem │ ├── campaign.py │ ├── client.py │ ├── createsend.py │ ├── journey.py │ ├── journey_email.py │ ├── list.py │ ├── person.py │ ├── segment.py │ ├── subscriber.py │ ├── template.py │ ├── transactional.py │ └── utils.py ├── samples ├── campaigns.py ├── clients.py ├── general.py ├── lists.py ├── segments.py └── subscribers.py ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── fixtures │ ├── active_subscribers.json │ ├── active_subscribers_with_tracking_preference.json │ ├── add_admin.json │ ├── add_person.json │ ├── add_subscriber.json │ ├── admin_details.json │ ├── admin_get_primary_contact.json │ ├── admin_set_primary_contact.json │ ├── administrators.json │ ├── apikey.json │ ├── billingdetails.json │ ├── bounced_subscribers.json │ ├── campaign_bounces.json │ ├── campaign_clicks.json │ ├── campaign_listsandsegments.json │ ├── campaign_opens.json │ ├── campaign_recipients.json │ ├── campaign_spam.json │ ├── campaign_summary.json │ ├── campaign_unsubscribes.json │ ├── campaigns.json │ ├── client_details.json │ ├── client_get_primary_contact.json │ ├── client_journeys.json │ ├── client_set_primary_contact.json │ ├── clients.json │ ├── countries.json │ ├── create_campaign.json │ ├── create_client.json │ ├── create_custom_field.json │ ├── create_list.json │ ├── create_list_webhook.json │ ├── create_segment.json │ ├── create_template.json │ ├── custom_api_error.json │ ├── custom_fields.json │ ├── custom_fields_utf8.json │ ├── deleted_subscribers.json │ ├── drafts.json │ ├── email_client_usage.json │ ├── expired_oauth_token_api_error.json │ ├── external_session.json │ ├── import_subscribers.json │ ├── import_subscribers_partial_success.json │ ├── journey_email_bounces_no_params.json │ ├── journey_email_bounces_with_params.json │ ├── journey_email_clicks_no_params.json │ ├── journey_email_clicks_with_params.json │ ├── journey_email_opens_no_params.json │ ├── journey_email_opens_with_params.json │ ├── journey_email_recipients_no_params.json │ ├── journey_email_recipients_with_params.json │ ├── journey_email_unsubscribes_no_params.json │ ├── journey_email_unsubscribes_with_params.json │ ├── journey_summary.json │ ├── list_details.json │ ├── list_stats.json │ ├── list_webhooks.json │ ├── lists.json │ ├── listsforemail.json │ ├── oauth_exchange_token.json │ ├── oauth_exchange_token_error.json │ ├── people.json │ ├── person_details.json │ ├── refresh_oauth_token.json │ ├── sample_client_error.json │ ├── sample_server_error.json │ ├── scheduled_campaigns.json │ ├── segment_details.json │ ├── segment_subscribers.json │ ├── segment_subscribers_with_tracking_preference.json │ ├── segments.json │ ├── subscriber_details.json │ ├── subscriber_details_with_tracking_preference.json │ ├── subscriber_history.json │ ├── suppressionlist.json │ ├── systemdate.json │ ├── tags.json │ ├── template_details.json │ ├── templates.json │ ├── timezones.json │ ├── transfer_credits.json │ ├── tx_classicemail_groups.json │ ├── tx_message_details.json │ ├── tx_message_details_with_statistics.json │ ├── tx_messages.json │ ├── tx_messages_classic.json │ ├── tx_messages_smart.json │ ├── tx_send_multiple.json │ ├── tx_send_single.json │ ├── tx_smartemail_details.json │ ├── tx_smartemails.json │ ├── tx_statistics_classic.json │ ├── tx_statistics_smart.json │ ├── unconfirmed_subscribers.json │ ├── unsubscribed_subscribers.json │ └── update_custom_field.json ├── test_administrator.py ├── test_authentication.py ├── test_campaign.py ├── test_client.py ├── test_createsend.py ├── test_journey.py ├── test_journey_email.py ├── test_list.py ├── test_people.py ├── test_segment.py ├── test_subscriber.py ├── test_template.py ├── test_transactional.py └── test_verifiedhttpsconnection.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/createsend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/__init__.py -------------------------------------------------------------------------------- /lib/createsend/administrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/administrator.py -------------------------------------------------------------------------------- /lib/createsend/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/cacert.pem -------------------------------------------------------------------------------- /lib/createsend/campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/campaign.py -------------------------------------------------------------------------------- /lib/createsend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/client.py -------------------------------------------------------------------------------- /lib/createsend/createsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/createsend.py -------------------------------------------------------------------------------- /lib/createsend/journey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/journey.py -------------------------------------------------------------------------------- /lib/createsend/journey_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/journey_email.py -------------------------------------------------------------------------------- /lib/createsend/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/list.py -------------------------------------------------------------------------------- /lib/createsend/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/person.py -------------------------------------------------------------------------------- /lib/createsend/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/segment.py -------------------------------------------------------------------------------- /lib/createsend/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/subscriber.py -------------------------------------------------------------------------------- /lib/createsend/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/template.py -------------------------------------------------------------------------------- /lib/createsend/transactional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/transactional.py -------------------------------------------------------------------------------- /lib/createsend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/lib/createsend/utils.py -------------------------------------------------------------------------------- /samples/campaigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/campaigns.py -------------------------------------------------------------------------------- /samples/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/clients.py -------------------------------------------------------------------------------- /samples/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/general.py -------------------------------------------------------------------------------- /samples/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/lists.py -------------------------------------------------------------------------------- /samples/segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/segments.py -------------------------------------------------------------------------------- /samples/subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/samples/subscribers.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/active_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/active_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/active_subscribers_with_tracking_preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/active_subscribers_with_tracking_preference.json -------------------------------------------------------------------------------- /test/fixtures/add_admin.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "admin@example.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/add_person.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "person@example.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/add_subscriber.json: -------------------------------------------------------------------------------- 1 | "subscriber@example.com" -------------------------------------------------------------------------------- /test/fixtures/admin_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/admin_details.json -------------------------------------------------------------------------------- /test/fixtures/admin_get_primary_contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "admin@blackhole.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/admin_set_primary_contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "admin@blackhole.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/administrators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/administrators.json -------------------------------------------------------------------------------- /test/fixtures/apikey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/apikey.json -------------------------------------------------------------------------------- /test/fixtures/billingdetails.json: -------------------------------------------------------------------------------- 1 | { 2 | "Credits": 3021 3 | } -------------------------------------------------------------------------------- /test/fixtures/bounced_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/bounced_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/campaign_bounces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_bounces.json -------------------------------------------------------------------------------- /test/fixtures/campaign_clicks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_clicks.json -------------------------------------------------------------------------------- /test/fixtures/campaign_listsandsegments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_listsandsegments.json -------------------------------------------------------------------------------- /test/fixtures/campaign_opens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_opens.json -------------------------------------------------------------------------------- /test/fixtures/campaign_recipients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_recipients.json -------------------------------------------------------------------------------- /test/fixtures/campaign_spam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_spam.json -------------------------------------------------------------------------------- /test/fixtures/campaign_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_summary.json -------------------------------------------------------------------------------- /test/fixtures/campaign_unsubscribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaign_unsubscribes.json -------------------------------------------------------------------------------- /test/fixtures/campaigns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/campaigns.json -------------------------------------------------------------------------------- /test/fixtures/client_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/client_details.json -------------------------------------------------------------------------------- /test/fixtures/client_get_primary_contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "person@blackhole.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/client_journeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/client_journeys.json -------------------------------------------------------------------------------- /test/fixtures/client_set_primary_contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "EmailAddress": "person@blackhole.com" 3 | } -------------------------------------------------------------------------------- /test/fixtures/clients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/clients.json -------------------------------------------------------------------------------- /test/fixtures/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/countries.json -------------------------------------------------------------------------------- /test/fixtures/create_campaign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/create_campaign.json -------------------------------------------------------------------------------- /test/fixtures/create_client.json: -------------------------------------------------------------------------------- 1 | "32a381c49a2df99f1d0c6f3c112352b9" -------------------------------------------------------------------------------- /test/fixtures/create_custom_field.json: -------------------------------------------------------------------------------- 1 | "[newdatefield]" -------------------------------------------------------------------------------- /test/fixtures/create_list.json: -------------------------------------------------------------------------------- 1 | "e3c5f034d68744f7881fdccf13c2daee1234" -------------------------------------------------------------------------------- /test/fixtures/create_list_webhook.json: -------------------------------------------------------------------------------- 1 | "6a783d359bd44ef62c6ca0d3eda4412a" -------------------------------------------------------------------------------- /test/fixtures/create_segment.json: -------------------------------------------------------------------------------- 1 | "0246c2aea610a3545d9780bf6ab890061234" -------------------------------------------------------------------------------- /test/fixtures/create_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/create_template.json -------------------------------------------------------------------------------- /test/fixtures/custom_api_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/custom_api_error.json -------------------------------------------------------------------------------- /test/fixtures/custom_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/custom_fields.json -------------------------------------------------------------------------------- /test/fixtures/custom_fields_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/custom_fields_utf8.json -------------------------------------------------------------------------------- /test/fixtures/deleted_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/deleted_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/drafts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/drafts.json -------------------------------------------------------------------------------- /test/fixtures/email_client_usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/email_client_usage.json -------------------------------------------------------------------------------- /test/fixtures/expired_oauth_token_api_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/expired_oauth_token_api_error.json -------------------------------------------------------------------------------- /test/fixtures/external_session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/external_session.json -------------------------------------------------------------------------------- /test/fixtures/import_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/import_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/import_subscribers_partial_success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/import_subscribers_partial_success.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_bounces_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_bounces_no_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_bounces_with_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_bounces_with_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_clicks_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_clicks_no_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_clicks_with_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_clicks_with_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_opens_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_opens_no_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_opens_with_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_opens_with_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_recipients_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_recipients_no_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_recipients_with_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_recipients_with_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_unsubscribes_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_unsubscribes_no_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_email_unsubscribes_with_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_email_unsubscribes_with_params.json -------------------------------------------------------------------------------- /test/fixtures/journey_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/journey_summary.json -------------------------------------------------------------------------------- /test/fixtures/list_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/list_details.json -------------------------------------------------------------------------------- /test/fixtures/list_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/list_stats.json -------------------------------------------------------------------------------- /test/fixtures/list_webhooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/list_webhooks.json -------------------------------------------------------------------------------- /test/fixtures/lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/lists.json -------------------------------------------------------------------------------- /test/fixtures/listsforemail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/listsforemail.json -------------------------------------------------------------------------------- /test/fixtures/oauth_exchange_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/oauth_exchange_token.json -------------------------------------------------------------------------------- /test/fixtures/oauth_exchange_token_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/oauth_exchange_token_error.json -------------------------------------------------------------------------------- /test/fixtures/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/people.json -------------------------------------------------------------------------------- /test/fixtures/person_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/person_details.json -------------------------------------------------------------------------------- /test/fixtures/refresh_oauth_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/refresh_oauth_token.json -------------------------------------------------------------------------------- /test/fixtures/sample_client_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/sample_client_error.json -------------------------------------------------------------------------------- /test/fixtures/sample_server_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/sample_server_error.json -------------------------------------------------------------------------------- /test/fixtures/scheduled_campaigns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/scheduled_campaigns.json -------------------------------------------------------------------------------- /test/fixtures/segment_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/segment_details.json -------------------------------------------------------------------------------- /test/fixtures/segment_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/segment_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/segment_subscribers_with_tracking_preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/segment_subscribers_with_tracking_preference.json -------------------------------------------------------------------------------- /test/fixtures/segments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/segments.json -------------------------------------------------------------------------------- /test/fixtures/subscriber_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/subscriber_details.json -------------------------------------------------------------------------------- /test/fixtures/subscriber_details_with_tracking_preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/subscriber_details_with_tracking_preference.json -------------------------------------------------------------------------------- /test/fixtures/subscriber_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/subscriber_history.json -------------------------------------------------------------------------------- /test/fixtures/suppressionlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/suppressionlist.json -------------------------------------------------------------------------------- /test/fixtures/systemdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/systemdate.json -------------------------------------------------------------------------------- /test/fixtures/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tags.json -------------------------------------------------------------------------------- /test/fixtures/template_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/template_details.json -------------------------------------------------------------------------------- /test/fixtures/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/templates.json -------------------------------------------------------------------------------- /test/fixtures/timezones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/timezones.json -------------------------------------------------------------------------------- /test/fixtures/transfer_credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/transfer_credits.json -------------------------------------------------------------------------------- /test/fixtures/tx_classicemail_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_classicemail_groups.json -------------------------------------------------------------------------------- /test/fixtures/tx_message_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_message_details.json -------------------------------------------------------------------------------- /test/fixtures/tx_message_details_with_statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_message_details_with_statistics.json -------------------------------------------------------------------------------- /test/fixtures/tx_messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_messages.json -------------------------------------------------------------------------------- /test/fixtures/tx_messages_classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_messages_classic.json -------------------------------------------------------------------------------- /test/fixtures/tx_messages_smart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_messages_smart.json -------------------------------------------------------------------------------- /test/fixtures/tx_send_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_send_multiple.json -------------------------------------------------------------------------------- /test/fixtures/tx_send_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_send_single.json -------------------------------------------------------------------------------- /test/fixtures/tx_smartemail_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_smartemail_details.json -------------------------------------------------------------------------------- /test/fixtures/tx_smartemails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_smartemails.json -------------------------------------------------------------------------------- /test/fixtures/tx_statistics_classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_statistics_classic.json -------------------------------------------------------------------------------- /test/fixtures/tx_statistics_smart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/tx_statistics_smart.json -------------------------------------------------------------------------------- /test/fixtures/unconfirmed_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/unconfirmed_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/unsubscribed_subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/fixtures/unsubscribed_subscribers.json -------------------------------------------------------------------------------- /test/fixtures/update_custom_field.json: -------------------------------------------------------------------------------- 1 | "[myrenamedcustomfield]" -------------------------------------------------------------------------------- /test/test_administrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_administrator.py -------------------------------------------------------------------------------- /test/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_authentication.py -------------------------------------------------------------------------------- /test/test_campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_campaign.py -------------------------------------------------------------------------------- /test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_client.py -------------------------------------------------------------------------------- /test/test_createsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_createsend.py -------------------------------------------------------------------------------- /test/test_journey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_journey.py -------------------------------------------------------------------------------- /test/test_journey_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_journey_email.py -------------------------------------------------------------------------------- /test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_list.py -------------------------------------------------------------------------------- /test/test_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_people.py -------------------------------------------------------------------------------- /test/test_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_segment.py -------------------------------------------------------------------------------- /test/test_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_subscriber.py -------------------------------------------------------------------------------- /test/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_template.py -------------------------------------------------------------------------------- /test/test_transactional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_transactional.py -------------------------------------------------------------------------------- /test/test_verifiedhttpsconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/test/test_verifiedhttpsconnection.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campaignmonitor/createsend-python/HEAD/tox.ini --------------------------------------------------------------------------------