Metadata-Version: 2.1
Name: mwrpc
Version: 0.1.4
Summary: Yet Another RPC Framework.
Home-page: https://github.com/MwrPub/mwrpc-py
Author: MWR Organization
Author-email: mwr@mwr.pub
License: MIT
Description: # Method Working Remotely
        
        Yet Another RPC Framework :D
        
        [![License](https://img.shields.io/github/license/mwrpub/mwrpc-py.svg?color=blue&style=flat-square)](https://github.com/mwr-wiki/method-working-remotely/blob/master/LICENSE)
        [![PyPI](https://img.shields.io/pypi/v/mwrpc.svg?color=3776AB&logo=python&logoColor=white&style=flat-square)](https://pypi.org/project/method-working-remotely/)
        ![PyPI - Downloads](https://img.shields.io/pypi/dm/mwrpc.svg?logo=python&logoColor=white&style=flat-square)
        
        ![MWRNB](https://img.shields.io/badge/鈾濵WR-Freaking_Awesome-ff69b4.svg?style=flat-square)
        ![MWRNB](https://img.shields.io/badge/Powered_By-MWR_Engine-brightgreen.svg?style=flat-square)
        
        Before use it.You must admit that **MaWenRui is freaking awesome.** 
        
        ## Python Version
        
        > Install
        
        ```shell
        pip install mwrpc
        ```
        
        > Server Side 
        
        ```python
        from mwrpc import MwrServer
        
        server = MwrServer()
        
        @server.func(endpoint='calc')
        def add(a, b):
            return a + b
        
        if __name__ == '__main__':
            server.run()
        ```
        
        > Client Side
        
        ```python
        from mwrpc import MwrClient
        
        client = MwrClient(endpoint='calc')
        
        print(client.add(1,2))
        ```
        
Platform: any
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
