Skip to content

Python client for onlinebrief24.de - a German letter sending service.

License

Notifications You must be signed in to change notification settings

dajool/onlinebrief24

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

pip install onlinebrief24

Beispiele

import onlinebrief24

c = onlinebrief24.Client('email@example.com', 'secret_password')
c.login()
c.upload('/tmp/filename1.pdf', duplex=False, color=False)
c.upload('/tmp/filename2.pdf', registered='insertion', envelope='c4')
c.disconnect()

with-statement

with onlinebrief24.Client('email@example.com', 'secret_password') as c:
    c.upload('/tmp/filename1.pdf', duplex=False, color=False)
    c.upload('/tmp/filename2.pdf', registered='insertion', envelope='c4')

Optionen für Brief

Option Werte Vorbelegung Beschreibung
color
  • True
  • False
True Farbdruck ja/nein
duplex
  • True
  • False
True Duplexdruck ja/nein
envelope
  • din_lang
  • c4
din_lang Umschlagformat. DIN lang oder C4.
distribution
  • auto
  • national
  • international
auto Versandzone. Automatisch, National, International
registered
  • None
  • insertion
  • standard
  • personal
None Einschreiben: Nein, Einwurf-Einschreiben, Standard-Einschreiben, Einschreiben eigenhändig
payment_slip
  • None
  • national
  • sepa
None Zahlschein: Kein Zahlschein, Inlands-Zahlschein, SEPA-Zahlschein

Copyright

MIT License

About

Python client for onlinebrief24.de - a German letter sending service.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages