Skip to main content

A rpc framework based on gevent/protobuf

Project description

A handy toolset.

Features

  • low level transport/protocol

  • high level stream/websocket

  • rpc support

  • custom combination of transport and protocol

  • useful ErrorManager

  • useful settings module

  • pluggable extensions, such as MiddlewareManager

  • handy pymaid console script

  • best effort performance

  • keep simple for use

Installation

pip install -U pymaid

Examples

import pymaid
from pymaid.net.stream import Stream


class Stream(Stream):

    def data_received(self, data):
        # cannot use asynchronous way since this is in io callback
        self.write_sync(data)


async def main():
    ch = await pymaid.net.serve_stream(
        'tcp://127.0.0.1:8001', transport_class=Stream
    )
    async with ch:
        await ch.serve_forever()


if __name__ == "__main__":
    pymaid.run(main())
import pymaid
from pymaid.net.stream import Stream


class Stream(Stream):

    def init(self):
        self.data_size = 0

    def data_received(self, data):
        self.data_size += len(data)


async def wrapper(address, count):
    stream = await pymaid.net.dial_stream(address, transport_class=Stream)

    for _ in range(count):
        await stream.write(b'a' * 1000)
    stream.shutdown()
    await stream.wait_closed()
    assert stream.data_size == 1000 * count, (stream.data_size, 1000 * count)


async def main():
    tasks = []
    address = 'tcp://127.0.0.1:8001'
    for x in range(100):
        tasks.append(pymaid.create_task(wrapper(address, 1000)))

    # await pymaid.wait(tasks, timeout=args.timeout)
    await pymaid.gather(*tasks)


if __name__ == "__main__":
    pymaid.run(main())

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

pymaid-1.0.0a3.tar.gz (78.8 kB view hashes)

Uploaded Source

Built Distributions

pymaid-1.0.0a3-cp310-cp310-manylinux1_x86_64.whl (102.5 kB view hashes)

Uploaded CPython 3.10

pymaid-1.0.0a3-cp39-cp39-manylinux1_x86_64.whl (102.4 kB view hashes)

Uploaded CPython 3.9

pymaid-1.0.0a3-cp38-cp38-manylinux1_x86_64.whl (102.7 kB view hashes)

Uploaded CPython 3.8

pymaid-1.0.0a3-cp37-cp37m-manylinux1_x86_64.whl (108.7 kB view hashes)

Uploaded CPython 3.7m

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