Skip to main content

基于rabbitmq的轻量级rpc调用封装

Project description

leaves

寓意为树叶,希望它是一个足够轻量且方便的rabbitmq rpc 调用

发布者使用

import asyncio

from leaves import RPC


async def main():
    async with RPC(con_url="amqp://") as rpc:
        rpc: RPC
        data = await rpc.points.hello("test", a="345")
        print(data)
    print("结束")


asyncio.ensure_future(main())
asyncio.get_event_loop().run_forever()

消费者使用

from leaves import Leaf, Branch, MicroContainer

branch = Branch("points")


@branch.leaf(timeout=10)
async def hello(*args, **kwargs):
    return 1


if __name__ == '__main__':
    container = MicroContainer([branch], con_url=r"amqp://")
    container.run()

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

leaves-0.4.0.tar.gz (4.8 kB view hashes)

Uploaded Source

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