Python client for the Serf orchestration tool
Project description
AioSerf is an async Python interface to Serf, the decentralised solution for service discovery and orchestration.
It uses anyio <https://github.com/agronholm/anyio>, thus should work with asyncio, trio, and curio. Hopefully.
Installation
aioserf requires a running Serf agent. See Serf’s agent documentation for instructions.
To install aioserf, run the following command:
$ pip install aioserf
or alternatively (you really should be using pip though):
$ easy_install aioserf
or from source:
$ python setup.py install
Getting Started
These examples require a running async loop. Trio <https://github.com/python-trio/trio> is recommended, though asyncio works too.
from aioserf import serf_client
async with serf_client() as client:
await client.event('foo', 'bar')
Stream usage:
from aioserf import serf_client
async with serf_client() as client:
async with client.stream('*') as stream:
async for resp in stream:
print(resp)
Development
aioserf requires a running Serf agent. See Serf’s agent documentation for instructions.
You can run the tests using the following commands:
$ serf agent --tag foo=bar & # start serf agent
$ python3 -mpytest tests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file aioserf-0.2.0.tar.gz
.
File metadata
- Download URL: aioserf-0.2.0.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 903b9407be756aedd2ef2e580fda2365139799d841445aa55c5eb82c1c5bb1ce |
|
MD5 | eb096a95c4894e12fb9e227aeea83d57 |
|
BLAKE2b-256 | 269e61c8c076aa5bf87d4fa30f1d278860ed4173480fe4333d72731d051a0a64 |