archive
/
ipc-unix
Archived
1
Fork 0

Add some examples to readme

This commit is contained in:
Jake Howard 2018-12-08 14:47:07 +00:00
parent c20a567709
commit f660be5fd3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 39 additions and 0 deletions

View File

@ -3,3 +3,42 @@
[![CircleCI](https://circleci.com/gh/RealOrangeOne/ipc-unix.svg?style=svg)](https://circleci.com/gh/RealOrangeOne/ipc-unix)
Simple Inter-Process Communication using unix sockets for Python.
## Examples
### Call / Response
```python
from ipc_unix import Server, Client
class EchoServer(Server):
def handle_request(self, request):
return request
socket_path = '/tmp/sock.sock'
server = EchoServer(socket_path)
client = Client(socket_path)
print(client.send({"foo": "bar"}))
>>> {"foo": "bar"}
```
### Pub-Sub
```python
from ipc_unix import pubsub
socket_path = '/tmp/sock.sock'
publisher = pubsub.Publisher(socket_path)
subscriber = pubsub.Subscriber(socket_path)
publisher.write({"foo": "bar"})
print(self.subscriber.get_latest_message())
>>> {"foo": "bar"}
publisher.close()
subscriber.close()
```