Python Anbindung für Gammu

Gammu bietet Ihnen Python Anbindungen, wodurch Sie (fast) alle Funktionen von Gammu per Python nutzen können.

Letzte Neuigkeiten

python-gammu 3.2.4

python-gammu 3.2.4 has been just released. Maintenance release bringing support for Python 3.10.

Veröfffentlicht von Michal Čihař, am 17. November 2021

python-gammu 3.1

python-gammu 3.1 has been just released. Improvements in worker mode.

Veröfffentlicht von Michal Čihař, am 24. Juli 2020

Download

Python module is now standalone, so please download it separately. If you want to use binary package, the daemon might be included in separate binary package in your distribution, try looking for something like python-gammu.

Am einfachsten installieren Sie es mit pip:

pip install python-gammu

Beispiel

Using python-gammu is quite simple, for example sending of the text message can be done by following snippet:

import gammu

sm = gammu.StateMachine()
sm.ReadConfig()
sm.Init()

message = {
    'Text': 'python-gammu testing message',
    'SMSC': {'Location': 1},
    'Number': '+420800123465',
}

sm.SendSMS(message)

Dokumentation

Die API Dokumentation ist einsehbar, eventuell hilfreich ist auch die libGammu Dokumentation. Für weitere Details empfehlen wir die Entwickler Dokumentation.

Check also Frequently Asked Questions.

Quellcode und Problem-Tracker

Sowohl der Quellcode als auch der Problem-Tracker werden auf GitHub gehostet:

Zusätzliche Informationen