Metadata-Version: 2.1
Name: pysignald
Version: 0.0.2
Summary: A library that allows communication via the Signal IM service using the signald daemon.
Home-page: https://gitlab.com/stavros/pysignald/
License: MIT
Author: Stavros Korokithakis
Author-email: hi@stavros.io
Requires-Python: >=3.4,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: attrs (>=18.2,<19.0)
Project-URL: Repository, https://gitlab.com/stavros/pysignald/
Description-Content-Type: text/markdown

pysignald
=======

[![pipeline status](https://gitlab.com/stavros/pysignald/badges/master/pipeline.svg)](https://gitlab.com/stavros/pysignald/commits/master)

pysignald is a Python client for the excellent [signald](https://git.callpipe.com/finn/signald) project, which in turn
is a command-line client for the Signal messaging service.

pysignald allows you to programmatically send and receive messages to Signal.

Installation
------------

You can install pysignald with pip:

```
$ pip install pysignald
```


Running
-------

Just make sure you have signald installed. Here's an example of how to use pysignald:


```python
from signald import Signal

s = Signal("+1234567890")
s.send_message("+1098765432", "Hello there!")

for message in s.receive_messages():
    print(message)
```

