├── .coveragerc ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── setup.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .scrutinizer.yml ├── AUTHORS ├── COPYING ├── MANIFEST.in ├── NEWS.rst ├── README.rst ├── admin ├── install.ps1 ├── release └── valgrind-python.supp ├── examples ├── __init__.py ├── addcontacts.py ├── addfile.py ├── async.py ├── backup_convertor.py ├── batteryinfo.py ├── data │ └── cgi.jpg ├── debugging.py ├── dialvoice.py ├── doc-exceptions.py ├── dummy_phone.py ├── filesystem_test.py ├── getallcalendar.py ├── getallmemory.py ├── getallmemory_nonext.py ├── getallsms.py ├── getallsms_decode.py ├── getalltodo.py ├── getdiverts.py ├── incoming.py ├── listfilesystem.py ├── mass_sms.py ├── pdu_decoder.py ├── read_sms_backup.py ├── savesmspercontact.py ├── sendlongsms.py ├── sendsms.py ├── service_numbers.py ├── setdiverts.py ├── sms_replier.py ├── smsbackup.py ├── smsd_inject.py ├── smsd_state.py ├── vcs.py └── worker.py ├── gammu ├── __init__.py ├── asyncworker.py ├── data.py ├── exception.py ├── smsd.py ├── src │ ├── convertors │ │ ├── backup.c │ │ ├── base.c │ │ ├── bitmap.c │ │ ├── calendar.c │ │ ├── call.c │ │ ├── diverts.c │ │ ├── file.c │ │ ├── memory.c │ │ ├── misc.c │ │ ├── ringtone.c │ │ ├── sms.c │ │ ├── string.c │ │ ├── time.c │ │ ├── todo.c │ │ └── wap.c │ ├── data.c │ ├── errors.c │ ├── gammu.c │ ├── misc.c │ └── smsd.c └── worker.py ├── include ├── convertors.h ├── data.h ├── errors.h └── misc.h ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── __init__.py ├── data ├── 02.vcs ├── UK32Holidays.ics ├── bug-779.vcf ├── gammu-dummy │ ├── calendar │ │ ├── 2 │ │ └── 22 │ ├── fs │ │ ├── dir2 │ │ │ ├── dir2-5 │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ ├── file3 │ │ │ │ └── file4 │ │ │ └── file5 │ │ └── file5 │ ├── pbk │ │ ├── ME │ │ │ ├── 1 │ │ │ ├── 101 │ │ │ └── 103 │ │ └── SM │ │ │ └── 1 │ ├── sms │ │ ├── 1 │ │ │ └── 1 │ │ ├── 2 │ │ │ └── 10 │ │ ├── 3 │ │ │ └── 42 │ │ └── 4 │ │ │ ├── 15 │ │ │ ├── 20 │ │ │ └── 21 │ └── todo │ │ ├── 3 │ │ └── 22 ├── gammu.vcf ├── k770.vcs ├── rrule.ics ├── sqlite-14.sql ├── sqlite-15.sql ├── sqlite-16.sql └── sqlite-17.sql ├── test_asyncworker.py ├── test_backup.py ├── test_config.py ├── test_data.py ├── test_dummy.py ├── test_errors.py ├── test_sms.py ├── test_smsd.py └── test_worker.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [nijel] 2 | custom: https://wammu.eu/donate/ 3 | liberapay: Gammu 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.github/workflows/setup.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/README.rst -------------------------------------------------------------------------------- /admin/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/admin/install.ps1 -------------------------------------------------------------------------------- /admin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/admin/release -------------------------------------------------------------------------------- /admin/valgrind-python.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/admin/valgrind-python.supp -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/addcontacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/addcontacts.py -------------------------------------------------------------------------------- /examples/addfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/addfile.py -------------------------------------------------------------------------------- /examples/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/async.py -------------------------------------------------------------------------------- /examples/backup_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/backup_convertor.py -------------------------------------------------------------------------------- /examples/batteryinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/batteryinfo.py -------------------------------------------------------------------------------- /examples/data/cgi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/data/cgi.jpg -------------------------------------------------------------------------------- /examples/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/debugging.py -------------------------------------------------------------------------------- /examples/dialvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/dialvoice.py -------------------------------------------------------------------------------- /examples/doc-exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/doc-exceptions.py -------------------------------------------------------------------------------- /examples/dummy_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/dummy_phone.py -------------------------------------------------------------------------------- /examples/filesystem_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/filesystem_test.py -------------------------------------------------------------------------------- /examples/getallcalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getallcalendar.py -------------------------------------------------------------------------------- /examples/getallmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getallmemory.py -------------------------------------------------------------------------------- /examples/getallmemory_nonext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getallmemory_nonext.py -------------------------------------------------------------------------------- /examples/getallsms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getallsms.py -------------------------------------------------------------------------------- /examples/getallsms_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getallsms_decode.py -------------------------------------------------------------------------------- /examples/getalltodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getalltodo.py -------------------------------------------------------------------------------- /examples/getdiverts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/getdiverts.py -------------------------------------------------------------------------------- /examples/incoming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/incoming.py -------------------------------------------------------------------------------- /examples/listfilesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/listfilesystem.py -------------------------------------------------------------------------------- /examples/mass_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/mass_sms.py -------------------------------------------------------------------------------- /examples/pdu_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/pdu_decoder.py -------------------------------------------------------------------------------- /examples/read_sms_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/read_sms_backup.py -------------------------------------------------------------------------------- /examples/savesmspercontact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/savesmspercontact.py -------------------------------------------------------------------------------- /examples/sendlongsms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/sendlongsms.py -------------------------------------------------------------------------------- /examples/sendsms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/sendsms.py -------------------------------------------------------------------------------- /examples/service_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/service_numbers.py -------------------------------------------------------------------------------- /examples/setdiverts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/setdiverts.py -------------------------------------------------------------------------------- /examples/sms_replier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/sms_replier.py -------------------------------------------------------------------------------- /examples/smsbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/smsbackup.py -------------------------------------------------------------------------------- /examples/smsd_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/smsd_inject.py -------------------------------------------------------------------------------- /examples/smsd_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/smsd_state.py -------------------------------------------------------------------------------- /examples/vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/vcs.py -------------------------------------------------------------------------------- /examples/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/examples/worker.py -------------------------------------------------------------------------------- /gammu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/__init__.py -------------------------------------------------------------------------------- /gammu/asyncworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/asyncworker.py -------------------------------------------------------------------------------- /gammu/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/data.py -------------------------------------------------------------------------------- /gammu/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/exception.py -------------------------------------------------------------------------------- /gammu/smsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/smsd.py -------------------------------------------------------------------------------- /gammu/src/convertors/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/backup.c -------------------------------------------------------------------------------- /gammu/src/convertors/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/base.c -------------------------------------------------------------------------------- /gammu/src/convertors/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/bitmap.c -------------------------------------------------------------------------------- /gammu/src/convertors/calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/calendar.c -------------------------------------------------------------------------------- /gammu/src/convertors/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/call.c -------------------------------------------------------------------------------- /gammu/src/convertors/diverts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/diverts.c -------------------------------------------------------------------------------- /gammu/src/convertors/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/file.c -------------------------------------------------------------------------------- /gammu/src/convertors/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/memory.c -------------------------------------------------------------------------------- /gammu/src/convertors/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/misc.c -------------------------------------------------------------------------------- /gammu/src/convertors/ringtone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/ringtone.c -------------------------------------------------------------------------------- /gammu/src/convertors/sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/sms.c -------------------------------------------------------------------------------- /gammu/src/convertors/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/string.c -------------------------------------------------------------------------------- /gammu/src/convertors/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/time.c -------------------------------------------------------------------------------- /gammu/src/convertors/todo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/todo.c -------------------------------------------------------------------------------- /gammu/src/convertors/wap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/convertors/wap.c -------------------------------------------------------------------------------- /gammu/src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/data.c -------------------------------------------------------------------------------- /gammu/src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/errors.c -------------------------------------------------------------------------------- /gammu/src/gammu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/gammu.c -------------------------------------------------------------------------------- /gammu/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/misc.c -------------------------------------------------------------------------------- /gammu/src/smsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/src/smsd.c -------------------------------------------------------------------------------- /gammu/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/gammu/worker.py -------------------------------------------------------------------------------- /include/convertors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/include/convertors.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/include/data.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/include/misc.h -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pre-commit 3 | twine >= 1.12.0 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/data/02.vcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/02.vcs -------------------------------------------------------------------------------- /test/data/UK32Holidays.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/UK32Holidays.ics -------------------------------------------------------------------------------- /test/data/bug-779.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/bug-779.vcf -------------------------------------------------------------------------------- /test/data/gammu-dummy/calendar/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/calendar/2 -------------------------------------------------------------------------------- /test/data/gammu-dummy/calendar/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/calendar/22 -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/dir2/dir2-5/file1: -------------------------------------------------------------------------------- 1 | This is testing file1! -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/dir2/dir2-5/file2: -------------------------------------------------------------------------------- 1 | This is testing file2! -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/dir2/dir2-5/file3: -------------------------------------------------------------------------------- 1 | This is testing file3! -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/dir2/dir2-5/file4: -------------------------------------------------------------------------------- 1 | This is testing file4! -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/dir2/file5: -------------------------------------------------------------------------------- 1 | This is testing file6! -------------------------------------------------------------------------------- /test/data/gammu-dummy/fs/file5: -------------------------------------------------------------------------------- 1 | This is testing file5! -------------------------------------------------------------------------------- /test/data/gammu-dummy/pbk/ME/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/pbk/ME/1 -------------------------------------------------------------------------------- /test/data/gammu-dummy/pbk/ME/101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/pbk/ME/101 -------------------------------------------------------------------------------- /test/data/gammu-dummy/pbk/ME/103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/pbk/ME/103 -------------------------------------------------------------------------------- /test/data/gammu-dummy/pbk/SM/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/pbk/SM/1 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/1/1 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/2/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/2/10 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/3/42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/3/42 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/4/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/4/15 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/4/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/4/20 -------------------------------------------------------------------------------- /test/data/gammu-dummy/sms/4/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/sms/4/21 -------------------------------------------------------------------------------- /test/data/gammu-dummy/todo/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/todo/22 -------------------------------------------------------------------------------- /test/data/gammu-dummy/todo/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu-dummy/todo/3 -------------------------------------------------------------------------------- /test/data/gammu.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/gammu.vcf -------------------------------------------------------------------------------- /test/data/k770.vcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/k770.vcs -------------------------------------------------------------------------------- /test/data/rrule.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/rrule.ics -------------------------------------------------------------------------------- /test/data/sqlite-14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/sqlite-14.sql -------------------------------------------------------------------------------- /test/data/sqlite-15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/sqlite-15.sql -------------------------------------------------------------------------------- /test/data/sqlite-16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/sqlite-16.sql -------------------------------------------------------------------------------- /test/data/sqlite-17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/data/sqlite-17.sql -------------------------------------------------------------------------------- /test/test_asyncworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_asyncworker.py -------------------------------------------------------------------------------- /test/test_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_backup.py -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_config.py -------------------------------------------------------------------------------- /test/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_data.py -------------------------------------------------------------------------------- /test/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_dummy.py -------------------------------------------------------------------------------- /test/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_errors.py -------------------------------------------------------------------------------- /test/test_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_sms.py -------------------------------------------------------------------------------- /test/test_smsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_smsd.py -------------------------------------------------------------------------------- /test/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gammu/python-gammu/HEAD/test/test_worker.py --------------------------------------------------------------------------------