Skip to main content

Python bindings for signald

Project description

Signald python bindings

Most of the content here is generated by util/generate_api.py that uses the output of the 'protocol' request of the signald API.

Since this output is incomplete, a few manual additions are present in pysignald_async/api.py.

Install

pip install pysignald-async

Usage

An example can be found in this signal/XMPP gateway.

import asyncio

from pysignald_async import SignaldAPI

async def main():
    loop = asyncio.get_running_loop()
    _, signald = await loop.create_unix_connection(
        SignaldAPI, path=SIGNALD_SOCKET_PATH)
    await signald.register(username="+XXXXXX")
    # Some async code to get the SMS code
    await signald.verify(username="+XXXXXX", code=code)
    await signald.on_con_lost

SIGNALD_SOCKET_PATH = "/var/run/signald/signald.sock"

asyncio.run(main())

TODO: Write a better README

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

pysignald-async-0.1.4.tar.gz (10.1 kB view hashes)

Uploaded Source

Built Distribution

pysignald_async-0.1.4-py3-none-any.whl (10.8 kB view hashes)

Uploaded Python 3

Supported by

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