sendsafely
The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner.
What it is and what it does
SendSafely Python API is a client library that wraps the SendSafely REST API, allowing you to programmatically create secure packages, encrypt and upload messages and files, add recipients, and finalize delivery—all without implementing the underlying cryptographic and upload logic yourself. It abstracts away the complexity of direct REST calls by providing high-level Python objects (SendSafely, Package) that handle encryption, upload, and recipient management as methods.
The package is intended for developers integrating SendSafely's secure data transfer service into Python applications. It requires valid API credentials from a SendSafely account and a connection to your company's SendSafely instance. No runtime dependencies are listed, suggesting the package either bundles its own HTTP and crypto libraries or relies only on Python's standard library.
Use it for:
- Automate secure file delivery workflows in enterprise applications by programmatically creating and sending encrypted packages.
- Build internal tools that encrypt and upload sensitive documents without exposing raw REST API calls to developers.
- Integrate secure messaging into notification or alert systems that need to send encrypted content to external recipients.
- Create batch operations to send the same encrypted message or file to multiple recipients with a single script.
- Replace manual SendSafely portal uploads with API-driven workflows in data processing pipelines.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Integrates SendSafely secure file transfer and messaging into Python applications via an API client that handles encryption, upload, and recipient management.
Yes, if you need SendSafely integration and have valid API credentials. The package is actively maintained, permissively licensed, and has no known vulnerabilities. However, the high install friction (source-only distribution) and minimal community adoption (7 repository stars) mean you should test installation in your environment first and verify that any system dependencies are available. For non-SendSafely secure transfer needs, evaluate whether a more widely-adopted alternative exists.
Install
sendsafely on PyPI
pip
pip install sendsafelyuv
uv add sendsafelypoetry
poetry add sendsafelyInstalling sendsafely
Before you install
High install friction: the package is distributed as a source tarball with no prebuilt wheels, requiring compilation or setup tools. Maintenance is active with a recent release 22 days ago, but the repository has minimal stars (7), suggesting limited community adoption and review.
License in practice
Apache License 2.0 is permissive and poses no restrictions on commercial or private use. You may use, modify, and distribute this package freely provided you include the license notice.
Quickstart
pip install sendsafely
from sendsafely import SendSafely, Package
sendsafely = SendSafely("https://your-company.sendsafely.com", "API_KEY", "API_SECRET")
package = Package(sendsafely)
package.encrypt_and_upload_message("hello this is a message")
package.add_recipient("user@foobar.com")
response = package.finalize()
Requires Python 3 or higher and valid SendSafely API credentials (API_KEY and API_SECRET) generated from your SendSafely portal account.
Verify before relying
- Whether the source tarball requires native compilation or system dependencies beyond Python 3.
- Performance characteristics and throughput limits for large file uploads or bulk operations.
- Whether the package supports async/await patterns or is synchronous-only.
Package facts
| License | Apache License Version 2.0 (permissive) |
| Python support | supports the current Python release (>=3) |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | actively maintained — 22 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 297,734/month — #7,880 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: sendsafely-1.0.11.tar.gz
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
mailtrapOfficial Python client for Mailtrap's email…
permissive · top 15,000 on PyPI
phaxioA Python client library for the Phaxio API that…
permissive · top 15,000 on PyPI
Flask-MailFlask-Mail adds email-sending functionality to…
permissive · top 5,000 on PyPI
securetarSecure Tar wraps Python's tarfile module to add…
permissive · top 15,000 on PyPI
files-comPython client library for the Files.com API,…
permissive · top 15,000 on PyPI
http-eceImplements encrypted content encoding for HTTP…
permissive · top 5,000 on PyPI
kasa-cryptProvides fast encryption and decryption…
permissive · top 15,000 on PyPI
magic-wormholeMagic Wormhole transfers files, directories,…
permissive · top 15,000 on PyPI
pyAesCryptEncrypts and decrypts files and binary streams…
permissive · top 15,000 on PyPI
tufTUF is a Python reference implementation of The…
permissive · top 5,000 on PyPI