https://github.com/sunng87/slacker-python
python client for slacker
https://github.com/sunng87/slacker-python
Last synced: 3 months ago
JSON representation
python client for slacker
- Host: GitHub
- URL: https://github.com/sunng87/slacker-python
- Owner: sunng87
- Created: 2012-04-23T13:06:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-09-26T10:34:31.000Z (over 2 years ago)
- Last Synced: 2025-09-29T15:27:24.805Z (3 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
slacker-python
==============
.. image:: https://img.shields.io/pypi/v/slacker-python.svg?maxAge=2592000
:target: https://pypi.python.org/pypi/slacker-python/
.. image:: https://img.shields.io/pypi/l/slacker-python.svg?maxAge=2592000
:target: https://pypi.python.org/pypi/slacker-python/
.. image:: https://img.shields.io/pypi/pyversions/slacker-python.svg?maxAge=2592000
:target: https://pypi.python.org/pypi/slacker-python/
Python client of the `slacker RPC `_.
This project is still working in progress.
Installation
------------
`pip install slacker-python`
Usage
-----
::
from slacker.geventbackend import Client
from slacker.proxy import Proxy
c = Client("127.0.0.1:2104")
p = Proxy(c, "slacker.example.api")
## remote function echo
p.echo("hello")
## remote function rand-ints
p.call("rand-ints", 40)
License
-------
This package is open sourced under MIT License.