Skip to main content

pyPostal is an Interface for sending real (paper-based) letters via API (Pixelletter)

Project description

pyPostal is an Interface for sending real (paper-based) letters via an API.

There are several providers which offer printing, envelope stuffing and posting services but currently only https://www.pixelletter.de/ provides such services to SME without contractual hassles and the like.

This interface only supports mailing PDFs which have the Address Placed in the PDF at the DIN 5008 Address Location.

You can download it at the Python PAckage Index (PyPI).

High-Level Usage

Usage is very easy: Just set up your credentials in the Environment before starting Python:

export PYPOSTAL_PIXELLETTER_CRED='your@email.com:PASSWORD'
export PYPOSTAL_SIPGATE_CRED='your@email.com:PASSWORD'

Then call pypostal.send_post_pixelletter() with the open PDF files or PDF datatream to send and the country code of the recipient:

>>> import pypostal
>>> pypostal.send_post_pixelletter(
        [open('/Users/md/Desktop/Testbrief.pdf').read()], 'DE')

For Sending Faxes you need a Sender number

>>> import pypostal
>>> pypostal.send_fax_sipgate(
        [open('/Users/md/Desktop/Testbrief.pdf').read()],
        dest_numbers=['+49123456', '+49654321'], '+49-meine-nummer')

If you prefer to hardcode credentials you can provide them via a function call instead via the environment:

>>> pypostal.send_post_pixelletter([open('Testbrief.pdf')], 'DE',
                                   username='your@email.com',
                                   password='PASSWORD')

In addition the module searches for credentials in the django settings module and in a moduke called config.

Pixelletter Interface

Pixelletter offers a Bunch of Documentation and a PHP Library. Unfortunately there is no specification of the HTTP-API and the documentation seems also somewhat incomplete and outdated. Also it seems that Pixelletter uses no prebuild XML processing and parsing pipeline but build one arround print statements. This library was build by using trial and error and reverse engeneering the website.

Example Usage

The Pixelletter interface is straightforward:

# Log in
>>> from pypostal import Pixelletter
>>> pix = Pixelletter('your_email', 'your_password', test_mode=True)

# Show how many Cents Pixelletter owes you.
>>> print pix.get_account_info()['customer_credit']
1995

# Send two PDFs from your Desktop as en Letter
>>> print pix.sendPost([open('/Users/md/Desktop/Testbrief.pdf'),
                        open('/Users/md/Desktop/Thesis.pdf')])

# Send one PDF printet in color and in CO2 neutral fashion.
>>> print pix.sendPost([open('/Users/md/Desktop/Testbrief.pdf').read()],
                       guid='0815-4711', service=['green', 'color'])

You can provide a GUID (“Transaction Identifier” in the Pixelletter Documenttion) - this might support a Track and Trace Interface but I havn’t seen any documentation on this. Something like https://www.pixelletter.de/de/auftraege.php as an Atom Feed vertainly would be nice.

The Python library currently supports following services:

  • green (default, use service=[] to disable)

  • einschreiben (see DHL / Deutsche Post AG on the differences)

  • einschreibeneinwurf

  • eigenhaendig

  • eigenhaendigrueckschein

  • rueckschein

  • color

The Pixelletter API also seems to support “Nachnahme”, “Postident Comfort” and “Ueberweisungsvordruck” but they are undocumented and currently not supported by this library.

Sipgate.de Fax Interface

Sipgate.de offers a hot and new REST API with some documentation. Pypostal provides functionality to send PDFs via Fax. You can use PYPOSTAL_SIPGATE_CRED to set Credentials.

Example Usage

A nice and clean interface:

# Log in
>>> from pypostal.sipgate import Sipgate
>>> sip = Sipgate('your_email', 'your_password')
# Send a PDF via Fax
>>> sip.sendFax([open('/Users/md/Desktop/Testbrief.pdf')], ['+49123456'], '+49654321')

Planned other Interfaces

We want to support

  • Pixelletter Fax interface

  • Pawisda L-Vin Post / Pinbriefportal SOAP Interface

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyPostal-1.1d.tar.gz (7.4 kB view details)

Uploaded Source

File details

Details for the file pyPostal-1.1d.tar.gz.

File metadata

  • Download URL: pyPostal-1.1d.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyPostal-1.1d.tar.gz
Algorithm Hash digest
SHA256 6cce01f1fecc4121ccbe235d1e10eadda26bcd263edf9c0c634c4b8d5620b0a4
MD5 50e0629c9b35503b52bda8510acc0449
BLAKE2b-256 c322b4be55d6a4a296955992ff7dccab7eb11307799a242fcf9c14373b35b08a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page