skillfed

phaxio

Python client for Phaxio v2 API

phaxio v0.3 119.5K downloads/30d#12,069 on PyPI7
Permissive license MIT License DORMANT released

What it is and what it does

Phaxio is a lightweight Python wrapper around the Phaxio fax service API. It provides a client class that organizes API calls into functional groups (Fax, PhoneNumber, PhaxCode, Account, Countries) and handles the HTTP communication and error responses for you. The library accepts keyword arguments matching Phaxio's documented API parameters and returns structured response objects.

The package is intended for developers who need to integrate fax sending or fax-related operations into Python applications. It has no runtime dependencies, making it minimal to install, but it is dormant—last updated in 2017—so it may not work reliably with modern Python versions or reflect current Phaxio API changes. Use it only if you are already committed to the Phaxio service and can verify API compatibility yourself.

Use it for:

  • Send faxes to multiple recipients from a Python application using PDF or other supported file formats.
  • Retrieve and manage Phaxio phone numbers and account information programmatically.
  • Integrate fax sending into a business workflow or document management system.
  • Query supported countries and fax capabilities via the Countries API endpoint.
  • Handle fax-related errors uniformly through the ApiException class in your application.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python client library for the Phaxio API that lets you send faxes, manage phone numbers, and interact with Phaxio's fax service programmatically.

No. The package is dormant (last release 2017-09-07, last commit 2024-03-25), has high install friction (source-only distribution), and carries no guarantee of compatibility with modern Python or current Phaxio API behavior. Install only if you are already locked into Phaxio and can independently verify that the API surface matches your needs and that the package runs on your Python version.

Install

phaxio on PyPI

pip

pip install phaxio

uv

uv add phaxio

poetry

poetry add phaxio

Installing phaxio

Before you install

High install friction due to source-only distribution (phaxio-0.3.tar.gz). The package is dormant—last release was 2017-09-07 and last commit 2024-03-25—so expect no active maintenance or support for modern Python versions or dependency updates.

License in practice

MIT License permits commercial and private use with minimal restrictions, making it legally straightforward to adopt, though the dormant status means no ongoing license review or updates.

Quickstart

pip install phaxio

from phaxio import PhaxioApi

api = PhaxioApi(key, secret)
response = api.Fax.send(to=['4141234567'], files='/path/to/file.pdf')
print(response.data.id)

Requires a Phaxio account with API credentials (key and secret); no runtime dependencies listed but source-only distribution may require build tools.

Verify before relying

  • Whether the package works with current Python versions (classifiers list Python 2 and 3 but no specific version bounds).
  • Current status of Phaxio API compatibility—the package has not been updated since 2017.
  • Whether the Phaxio service itself is still operational and maintained.

Package facts

License MIT License (permissive)
Python support not specified
Install friction high — source build required
Runtime dependencies none
Maintenance dormant — 3,263 days since the last release
Last repo commit
First released
Downloads 119,525/month — #12,069 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: phaxio-0.3.tar.gz

Keywords: python, phaxio, fax, api

Programming Language :: PythonProgramming Language :: Python :: 2Programming Language :: Python :: 3

Tags

fax api python clientsend fax programmaticallyphaxio integrationfax service api wrapperpython fax library
fax-servicedormant

More Internet packages