Skip to content Skip to sidebar Skip to footer
Showing posts with the label Spyne

Python Spyne Service - Base64 Strings Come Escaped

I have a simple spyne service: class JiraAdapter(ServiceBase): @srpc(Unicode, String, Unicode, … Read more Python Spyne Service - Base64 Strings Come Escaped

How To Implement Abstract Model In Spyne

I need to implement an abstract model using Spyne. In fact, let's say - as a simple example - t… Read more How To Implement Abstract Model In Spyne

Name Customization For Attribute_of

I'm playing with attribute_of and spyne 2.10 (very glad it's out). Let's consider follo… Read more Name Customization For Attribute_of

How Do You @rpc _returns Polymorphic Types In Spyne?

Edit Example, class A(ComplexModel): Id = Unicode class B(ComplexModel): __extends__ = A … Read more How Do You @rpc _returns Polymorphic Types In Spyne?