--- id: sparkpost version: "1.3.10" license: Apache 2.0 license_treatment: permissive maintenance: abandoned --- # sparkpost — SparkPost Python API client License: permissive · Maintenance: abandoned · Downloads: 197.3K/mo ## What it is and what it does SparkPost is the official Python wrapper around SparkPost's email transmission API. It abstracts the HTTP calls needed to send transactional emails, manage templates, and track delivery through SparkPost's infrastructure. The library is lightweight, depending only on requests, and provides both a direct API client and a Django email backend for framework integration. The package was last updated in November 2021 and has received no commits since May 2023, placing it in abandoned status. It targets Python 2.7 and Python 3.4+, though modern Python support is unspecified. If you are already using SparkPost and have an existing integration, this client will work; for new projects, you should verify whether SparkPost now maintains a newer client or recommends a different approach. Use it for: - Send transactional emails (order confirmations, password resets) from a Python application via SparkPost. - Integrate SparkPost email sending into a Django project using the built-in email backend. - Manage email transmissions and track delivery metrics through SparkPost's API from Python code. - Deploy email functionality on Google Cloud by wrapping requests with the appengine adapter. - Programmatically send bulk or templated emails using SparkPost's transmission API. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Official Python client for the SparkPost email transmission API, enabling programmatic sending of emails through SparkPost's infrastructure. Yes, but only if you are already committed to SparkPost and have an existing integration. The package is abandoned (last release November 2021, no commits since May 2023), so it carries maintenance risk. For new projects, contact SparkPost to confirm this is still the recommended client or whether they provide an actively maintained alternative. If you are locked into this library, the low install friction and lack of known vulnerabilities make it safe to use as-is. ## Install pip install sparkpost uv add sparkpost poetry add sparkpost ## Installing sparkpost Before you install: Low install friction with a single dependency (requests). However, the package is abandoned—last release was 2021-11-09 and no commits since 2023-05-22. Use only if you are locked into an existing SparkPost integration; for new projects, verify whether SparkPost maintains an actively supported client. License in practice: Licensed under Apache 2.0 (permissive), which allows commercial use, modification, and distribution with minimal restrictions—suitable for most projects. Quickstart: pip install sparkpost from sparkpost import SparkPost sp = SparkPost('YOUR_API_KEY') response = sp.transmissions.send( recipients=['user@example.com'], html='Hello world', from_email='sender@example.com', subject='Test' ) Requires a valid SparkPost API key (obtainable from the SparkPost app); Python 2.7 or later. Verify before relying: - Whether SparkPost has released a newer, actively maintained Python client since this package was abandoned. - Current compatibility with modern Python versions beyond those listed in classifiers (3.4, 3.5). - Whether the package works with current SparkPost API versions without undocumented breaking changes. ## Package facts - License: Apache 2.0 (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 197.3K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags sparkpost email api client, send emails via sparkpost, sparkpost python library, email transmission api, sparkpost django backend, transactional email python, sparkpost api wrapper, email-delivery, transactional-email, abandoned [View on SkillFed](https://skillfed.io/packages/sparkpost) · [View on PyPI](https://pypi.org/project/sparkpost/)