Skip to main content

political-comms

Python SDK for the Political Comms REST API. Direct-to-carrier political texting for campaigns, PACs, advocacy organizations, fundraisers, and elected officials.

Synchronous client built on httpx. Python 3.10 or later.

The full API reference lives at docs.politicalcomms.com and the OpenAPI 3.1 specification at politicalcomms.com/openapi.json.

Install

pip install political-comms

Authentication

Requests authenticate with an API key in the X-API-Key header. Keys are created in the dashboard under Admin > API and are prefixed pc_live_.

Set the key in the environment:

export POLITICAL_COMMS_API_KEY=pc_live_...
from political_comms import PoliticalCommsClient

client = PoliticalCommsClient()

Or pass it to the constructor:

client = PoliticalCommsClient(api_key="pc_live_...")

Quickstart

Verify the credential, then run the standard send workflow: create a project, send yourself a test, and schedule it.

from political_comms import PoliticalCommsClient

client = PoliticalCommsClient()

# 1. Verify the credential.
orgs = client.list_organizations()
print([org.get("display_name") for org in orgs["data"]])

# 2. Create a project.
created = client.create_project(
    organization_id="org_...",
    name="GOTV reminder",
    protocol="sms",
    message_text="Polls are open until 8pm. Find your polling place: {link}",
    phone_number_ids=["pn_..."],
    contact_list_ids=["cl_..."],
    brand_id="brand_...",
    campaign_id="camp_...",
)
project_id = created["data"]["id"]

# 3. Send a test to yourself.
client.test_project(project_id, [{"phone": "+15555550100"}])

# 4. Schedule the send.
client.schedule_project(project_id, "2026-11-03T09:00:00", "America/New_York")
# Optional: run the whole project past the brand's daily T-Mobile carrier limit
# instead of pausing at it each day. Over-limit messages to T-Mobile recipients
# may fail and are still billed.
# client.schedule_project(
#     project_id, "2026-11-03T09:00:00", "America/New_York", daily_cap_bypass=True
# )

One method exists per API operation, in snake_case: list_organizations, get_hierarchy, list_brands, list_campaigns, list_tracking_domains, list_phone_numbers, list_toll_free_verifications, get_toll_free_verification, list_contact_lists, get_contact_list, import_contact_list, analyze_contact_list, delete_contact_list, list_media, import_media, get_media, delete_media, list_projects, create_project, get_all_project_stats, get_project, update_project, get_project_stats, test_project, schedule_project, unschedule_project, copy_project, archive_project, get_message_stats, get_ledger_usage, get_ledger_usage_by_initiator.

Every method returns the parsed JSON response, a dict of the form {"success": True, "data": ...}.

Email (early access)

The /v1/email surface is wrapped in full: sending domains, sender identities, lists and contacts, list imports, suppressions, templates, AI drafts, and campaigns. Every email method returns 403 EMAIL_EARLY_ACCESS until the email product reaches general availability. The contract is stable, so integrations can be written against it now.

Email lists are keyset paginated: the payload is { data, has_more, next_cursor }. Page until next_cursor is null, and never parse or construct a cursor.

There is no inbound email or inbox surface, and no A/B testing.

# Page through campaigns.
cursor = None
while True:
    page = client.list_email_campaigns(limit=100, cursor=cursor)
    for campaign in page["data"]["data"]:
        print(campaign["name"], campaign["status"])
    cursor = page["data"]["next_cursor"]
    if cursor is None:
        break

# Check what is blocking a campaign before scheduling it.
campaign = client.get_email_campaign(campaign_id)["data"]
if campaign.get("blocked"):
    for reason in campaign["blocked"]:
        print(reason["code"], reason["message"])
else:
    client.schedule_email_campaign(campaign_id, scheduled_at="2026-09-05T15:00:00Z")

Templates and AI drafts

Templates save the HTML a campaign sends. Create and update also return lint: the save succeeds either way, but a campaign will not schedule while lint["errors"] is non-empty, so check it at save time rather than at send time. content["editor"] is always "html"; the designer document is not exposed.

Drafting is asynchronous and costs money: one email_ai_draft charge ($3.00 by default, per-org pricing) is recorded only when a draft reaches ready. A failed draft is never billed, and a wallet that cannot cover the draft up front is refused with 402 INSUFFICIENT_BALANCE before any draft row is created.

# Images must be email assets in the same organization.
asset = client.import_media(
    "https://example.com/header.png",
    organization_id="org_1",
    usage="email_asset",  # brand_id must be omitted: email assets are org-scoped
)["data"]

requested = client.request_email_template_draft(
    "A get-out-the-vote email for Tuesday, warm and urgent.",
    image_media_ids=[asset["media_id"]],
    brand_colors={"primary": "#1a3d7c"},
)["data"]

# Generation runs on a queue, so the API is poll-based. This helper does the
# polling; a failed draft is returned, not raised.
draft = client.wait_for_email_template_draft(requested["draft"]["id"])
if draft["status"] == "ready":
    client.create_email_template(
        "GOTV Tuesday",
        {"subject": draft["subject"], "html": draft["html"]},
    )
else:
    print(draft["error_code"], draft["error_message"])

List imports

start_email_list_import fetches a CSV you host over https (50 MB cap) and commits it in one call. Omit mapping to let the server recognize a common ESP export; when neither your mapping nor the recognizer finds an email column the call is a 400 VALIDATION_ERROR whose details["headers"] lists the headers that were read, so you can retry with a mapping instead of guessing.

started = client.start_email_list_import(
    "https://example.com/donors.csv",
    "lst_1",
    {"source": "donation_form", "note": "ActBlue donors, 2026 cycle"},
)["data"]
imported = client.get_email_list_import(started["id"])["data"]
print(imported["status"], imported["summary"])

Error handling

Non-success responses raise PoliticalCommsError with the API's machine readable code, the HTTP status_code, and the raw response body.

from political_comms import PoliticalCommsClient, PoliticalCommsError

client = PoliticalCommsClient()
try:
    client.get_project("proj_unknown")
except PoliticalCommsError as err:
    print(err.code, err.status_code, err)

Network failures raise PoliticalCommsError with code == "NETWORK_ERROR" and status_code == 0.

Retries

The client retries automatically with these rules:

  • 400, 401, 403, 404 are never retried.
  • 429 is retried after waiting until the X-RateLimit-Reset timestamp.
  • 500, 502, 503, 504 are retried with exponential backoff and jitter: 1 second base, 60 second cap, at most 5 attempts total.

Configure the retry budget with max_retries (retries after the first attempt, default 4):

client = PoliticalCommsClient(max_retries=2)

Every POST and PATCH request carries an Idempotency-Key header (a random UUID) so retries are safe; the API returns the cached first response when a key is replayed. DELETE requests send the header only when you supply a key. Supply your own key per call when you need cross-process deduplication:

client.create_project(..., idempotency_key="send-2026-11-03-wave-1")

Rate limits

The API allows, per key over a 60-second sliding window, 100 requests/minute for reads, 60/minute for writes, and 30/minute for deletes. The client exposes the most recent rate limit headers:

client.list_organizations()
print(client.last_rate_limit)
# RateLimitState(limit=100, remaining=97, reset=1767225600)  (reset is Unix seconds)

License

MIT. Questions: support@politicalcomms.com

Release files for political-comms 0.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for political-comms 0.5.0
File Size Uploaded
political_comms-0.5.0.tar.gz 21.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for political-comms 0.5.0
File Interpreter ABI Platform
political_comms-0.5.0-py3-none-any.whl Python 3 none any Details

Total release size: 38.2 kB

Release files / political_comms-0.5.0.tar.gz

Download URL political_comms-0.5.0.tar.gz
Size 21.0 kB
Tags Source
SHA-256 checksum
How to use checksums
d9c5de85f07aa5b74aff5273908ec548e43a07b959ccfa262c39ac8deeb00d70
BLAKE2b-256 checksum
How to use checksums
28548645ed31b2d239364231b3a6258454d55092baa1c223b76bd18835f1787a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release files / political_comms-0.5.0-py3-none-any.whl

Download URL political_comms-0.5.0-py3-none-any.whl
Size 17.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1d6a1d6840812916e8a295dec391518135301696d7df144b1fc1695cbc36332b
BLAKE2b-256 checksum
How to use checksums
165069c1067b85a143b30e7b6ba922f98cdec9c89e3d862262884b3b07e5ff34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release history Release notifications | RSS feed

0.10.0

2 release files

0.9.0

2 release files

0.5.1

2 release files

This release

0.5.0 This release

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page