Skip to main content

A python work server written in C

Project description

# MrWorkServer
A simple clustered python 3.5+ asyncio based work server that uses the MrQ interface.

# Example

```python

import asyncio
import mrworkserver

async def callback(msgs):
print("Callback:")
for m in msgs:
print(m)

ws = mrworkserver.WorkServer()
ws.cb = callback
ws.run()


```

# Example client

```python

# pip install asyncmrq mrjson

import asyncio
from mrq.client import Client
import mrjson

async def run(loop):
c = Client()
await c.connect(io_loop=loop,servers=[("127.0.0.1",7100)])

msg = mrjson.dumpb([1,2,3,4,5,6,7,8,9,10])
for x in range(10):
await c.push( 0, 0, msg, len(msg) )

await asyncio.sleep(1)
await c.close()

if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(run(loop))
loop.close()

```

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

mrworkserver-0.5.tar.gz (14.0 kB view details)

Uploaded Source

File details

Details for the file mrworkserver-0.5.tar.gz.

File metadata

  • Download URL: mrworkserver-0.5.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/32.3.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.5

File hashes

Hashes for mrworkserver-0.5.tar.gz
Algorithm Hash digest
SHA256 44a29fb5c64a0fc4f512969cade89bd02936066942aea2cda0af64046c4f2beb
MD5 5dd248685003a77da880a99e221177fb
BLAKE2b-256 2c6327b6d3ba8fd6fada8120b9a2f6c8ac3eb7166aa7d1891ce53f1f50780ca3

See more details on using hashes here.

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