Spyne is a Python RPC toolkit that makes it easy to expose online services that have a well-defined API using multiple protocols and transports. It integrates with popular Python web frameworks as well as libraries like SQLAlchemy to keep your code as DRY as possible. Spyne aims to save the protocol implementers the hassle of implementing their own remote procedure call api and the application programmers the hassle of jumping through hoops just to expose their services using multiple protocols and transports. In other words, Spyne is a framework for building distributed solutions that strictly follow the MVC pattern, where Model = spyne.model, View = spyne.protocol and Controller = user code. Spyne comes with the implementations of popular transport, protocol and interface document standards along with a well-defined API that lets you build on existing functionality.
Features
- Spyne 2.13 supports Python 2.7, 3.6, 3.7, 3.8, 3.9 and 3.10
- You first need to have package manager (pip, easy_install) installed
- Spyne ships with a setuptools bootstrapper
- Spyne is a framework for building distributed solutions that strictly follow the MVC pattern
- Spyne comes with the implementations of popular transport, protocol and interface document standards
- Well-defined API that lets you build on existing functionality