Gammu bietet Ihnen Python Anbindungen, wodurch Sie (fast) alle Funktionen von Gammu per Python nutzen können.
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 has been just released. Improvements in worker mode.
Veröfffentlicht von Michal Čihař, am 24. Juli 2020
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
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)
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.
Sowohl der Quellcode als auch der Problem-Tracker werden auf GitHub gehostet: