skillfed

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.

sendsafely v1.0.11 297.7K downloads/30d#7,880 on PyPI7
Permissive license Apache License Version 2.0 Active released

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 sendsafely

uv

uv add sendsafely

poetry

poetry add sendsafely

Installing 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

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Topic :: Software Development :: Libraries :: Application Frameworks

Tags

secure file transfer APIencrypted message deliverysendsafely integrationpython secure data transferencrypted package deliverysecure file sharing APIend-to-end encryption client
secure-transferencryption-client

More Application Frameworks packages