Skip to main content

Simple IPC server/client

Project description

PyPI PyPI - Python Version PyPI - Downloads PyPI - License Documentation Status Discord Buy Me a Coffee

ipcs

A library for Python for IPC.

WARNING This library is currently in alpha.

Installation

pip install ipcs

Examples

Run ipcs-server and run following code.

Client A

# Client A

from ipcs import IpcsClient

client = IpcsClient("A")

@client.route()
async def hello():
    print("Hello, World!")

client.run(uri="ws://localhost/", port=8080)

Client B

# Client B

from ipcs import IpcsClient

client = IpcsClient("B")

@client.listen()
async def on_ready():
    await client.request("A", "hello")

client.run(uri="ws://localhost/", port=8080)

LICENSE

MIT License

Contributing

Do not break the style of the code.
Issues and PullRequests should be brief in content.

Documentation

Documentation is avaliable here.

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

ipcs-0.1.0a2.tar.gz (11.7 kB view hashes)

Uploaded Source

Built Distribution

ipcs-0.1.0a2-py3-none-any.whl (13.4 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