Open hadeelsharaf opened 7 years ago
I had the same error using the latest released spyne version (2.12.14), but with current master everything works fine.
Perhaps a new version of spyne should be released and published on pypi?
https://stackoverflow.com/questions/40212969/options-object-has-no-attribute-get-all-field-names Replace
unknown_fields_names = field_names.difference(
meta.get_all_field_names())
to
unknown_fields_names = field_names.difference(
[f.name for f in meta.get_fields()])
I had this error while creating a service to a django project : AttributeError: 'Options' object has no attribute
get_all_field_names
this is the code:this part of the tracback: