mailchimp3
A python client for v3 of MailChimp API
What it is and what it does
mailchimp3 is a straightforward Python wrapper around MailChimp's REST API v3, built on top of the requests library. It provides object-oriented access to MailChimp's endpoints—lists, members, campaigns, automations, stores, reports, and more—without requiring you to construct HTTP requests manually. You initialize it with an API key (and optionally a username for basic auth or an OAuth2 token), then call methods like client.lists.all(), client.lists.members.create(), or client.campaigns.all() to interact with your MailChimp account.
The package handles pagination, field selection, and request headers for you. It supports both HTTP Basic Authentication and OAuth2, allows you to set request timeouts and custom User-Agent headers, and can be disabled at runtime to return None for all calls. The API structure mirrors MailChimp's official documentation, so if you know the endpoint you want, the method names are predictable. It has been stable since its first release in 2015 and covers all documented endpoints as of March 2017, though maintenance is now dormant.
Use it for:
- Sync subscriber lists and manage member data (add, update, delete) programmatically without manual MailChimp UI interaction.
- Automate campaign creation and sending workflows triggered by application events.
- Fetch campaign performance reports, click analytics, and email activity data for analysis or dashboards.
- Build integrations that read and write e-commerce data (stores, products, orders, carts) to MailChimp.
- Query and manage automation workflows, segments, and interest categories across multiple lists.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Python client for MailChimp API v3 that wraps HTTP requests to manage lists, campaigns, automations, and other MailChimp resources through a structured object interface.
Yes, if you need a stable, low-friction MailChimp v3 API client and can accept dormant maintenance. The package is production-stable, has no known vulnerabilities, and a single lightweight dependency. It is not suitable if you require active upstream support, ongoing API compatibility updates, or expect MailChimp to introduce breaking changes that demand prompt library updates.
Install
mailchimp3 on PyPI
pip
pip install mailchimp3uv
uv add mailchimp3poetry
poetry add mailchimp3Installing mailchimp3
Before you install
Low install friction with a single runtime dependency (requests). Maintenance is dormant—last release was 2023-06-13, over 1158 days ago, though the repository remains active with 461 stars and no recent commits. Suitable for stable, established integrations but not for projects requiring active upstream support.
License in practice
MIT license (permissive) means you can use, modify, and distribute this package freely in commercial and private projects with minimal restrictions, provided you include the license notice.
Quickstart
pip install mailchimp3
from mailchimp3 import MailChimp
client = MailChimp(mc_api='YOUR_API_KEY')
all_lists = client.lists.all(get_all=True)
Verify before relying
- Whether dormant maintenance status affects compatibility with current MailChimp API changes or OAuth2 flow reliability.
- Performance characteristics when fetching large record sets with pagination (count=500 recommended but not benchmarked in fact sheet).
Package facts
| License | MIT (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — requests |
| Maintenance | dormant — 1,158 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 289,292/month — #8,002 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: mailchimp3-3.0.21-py2.py3-none-any.whl
Keywords: mailchimp, api, v3, client, wrapper
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
mandrillMandrill is a deprecated Python API client and…
permissive · top 15,000 on PyPI
sib-api-v3-sdkPython SDK for the SendinBlue REST API,…
unclear · top 15,000 on PyPI
mailchimp-transactionalA Python client library for the Mailchimp…
unclear · top 15,000 on PyPI
mailmanMailman is a mailing list management system…
copyleft · top 15,000 on PyPI
klaviyoA deprecated client library for integrating…
permissive · top 15,000 on PyPI
klaviyo-apiPython client library for the Klaviyo marketing…
permissive · top 15,000 on PyPI
mailslurp-clientMailSlurp provides a Python client for an email…
unclear · top 15,000 on PyPI
mailgunOfficial Python SDK for the Mailgun email…
permissive · top 15,000 on PyPI
marketorestpythonPython client library that wraps the Marketo…
permissive · top 15,000 on PyPI
brevo-pythonOfficial Python SDK for the Brevo API,…
unclear · top 15,000 on PyPI