Vinculaciones Python para Gammu
Gammu also includes Python bindings which allow you to use (most) of Gammu functionality from Python language.
Últimas noticias
python-gammu 3.4.0
python-gammu 3.4.0 has been just released. This release is available from GitHub.
Publicado el 4 de agosto de 2026 por Gammu release automation
python-gammu 3.3.0
python-gammu 3.3.0 has been just released. This release is available from GitHub.
Publicado el 28 de julio de 2026 por Gammu release automation
Descargar
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.
The easiest way to install it is using pip:
pip install python-gammu
Ejemplo
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)
Documentación
Está disponible la documentación del API, pero probablemente consideres útil la documentación de libGammu. Por favor revise la página de documentación de desarrolladores para más detalles.
Check also Frequently Asked Questions.
Source code and issue tracker
Both source code and issue tracker are hosted on GitHub: