Skip to main content

A library to interact with serial AT devices

Project description

ATlib

Python library for sending and receiving SMS texts using AT commands. Higher and lower level features supported. Tested with SIM800L.

The API is relatively straightforward. The API is not asynchronous meaning all methods return the result directly. Take a look at the source for the full library.

For an application of this library, see gsm-agent. Where SMS messages can used to run shell scripts on a server (with security checks & registration).

Installation

The package can be installed via PIP:

pip install atlib

API

The API features two classes for interfacing with the GSM modem.

The low level is the AT_Device class. This class exposes only a synchronous API for sending AT commands and reading responses. It abstracts the painful process of AT commands not directly responding due to latency. Responses are detected by a terminated OK or ERROR string. The read() commands returns a tokenized list of the reply for easy parsing.

  • Opening serial connection.
  • Synchronizing baudrate using sync_baudrate() (by sending "AT" and awaiting response).
  • Sending AT commands.
  • Reading AT commands reliably.
  • Detecting errors.

The high level is the GSM_Device class. This class inherits from AT_Device. This class provides higher level features such as

  • Unlocking the device sim using pin.
  • Sending text messages.
  • Reading text messages (by category unread, all, read, etc).

This is still a w.i.p class for my personal use cases. Might be extended with call support later on.

Contributing

If you have problems with your modem, you can open issues here. I have tested all commands with a properly hooked up SIM800L on a Raspberry Pi Bullseye. Know that not all devices support all AT commands, and therefore may fail when using this library. However most devices should support the basics.

Examples

A minimal example can be found in /examples directory. Refer to the library itself to see many AT commands in action already (e.g sending commands, checking responses). See below for a minimal texting application:

#!/bin/python
# Console SMS sender using ATlib.

from atlib import *

# Show debug logs
import logging
logging.basicConfig(level=logging.DEBUG)

gsm = GSM_Device("/dev/serial0")
if gsm.is_sim_locked():
    pin = input("SIM Pin: ")
    gsm.unlock_sim(pin)
else:
    print("SIM already unlocked.")

while True:
    print("")
    nr = input("Phone number: ")
    msg = input("Message: ")

    if gsm.send_sms(nr, msg) != OK:
        print("Error sending message.")

Distribution

To build and upload to pypi, first update version in __init__.py and the pyproject.toml then run run:

python -m build
python -m twine upload --repository testpypi dist/*
python -m twine upload dist/*

Heritage

This code was initially developed by arceryz. He not longer maintains it and did not have interest to publish it to pypi but gave me permission to continue development and publish it to pypi myself.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atlib-0.1.15.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atlib-0.1.15-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file atlib-0.1.15.tar.gz.

File metadata

  • Download URL: atlib-0.1.15.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.16

File hashes

Hashes for atlib-0.1.15.tar.gz
Algorithm Hash digest
SHA256 ee615bca660d40420ff41d9398b7e3d315d660f99757f3667b278b7273713b9b
MD5 efa98682a737a927b79e70456720a0bd
BLAKE2b-256 c0f40c8843562387fb4f6672dcbbfe1eea807ddd2fde4d384caf7bba99046aee

See more details on using hashes here.

File details

Details for the file atlib-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: atlib-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.9.16

File hashes

Hashes for atlib-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 e48fa938acc221259e234643a5a3ac678c214ad569a8120a6f5ebadf6f50520b
MD5 86404f7e7fd4b8561f9ea06d5063ac0a
BLAKE2b-256 44faa2fe6927e08ddc53698dde290e3dba4c5376e732d47a423e2eb4c05e1212

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page