Metadata-Version: 1.1
Name: slacker-python
Version: 0.4.0a2
Summary: python client of slacker RPC
Home-page: http://github.com/sunng87/slacker-python
Author: Sun Ning
Author-email: sunng@about.me
License: mit
Description: 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 <https://github.com/sunng87/slacker>`_.
        
        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.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
