wapi
wapi copied to clipboard
Web Api Framework for Django
Hi people. i have a problem... I have a Brand Object with name and id attributes. Then i have a Car with name, color, and foreign key to Brand Object....
I can't find an example for http digest authentication, is there any tutorial?
serializer return ``` ``` instead of ``` ``` I think the error is in serializers/**init**.py 156 - fmt.format_list([get_object_serialization(objs, method).apply(obj, *_kwargs) for obj in objs]) 156 + fmt.format_list([get_object_serialization(obj, method).apply(obj, *_kwargs) for...
One of my models uses a custom QuerySet and Manager. When I return a SerializableResponse of "CustomQuerySet", my object serializer is ignored and instead a response is returned like: ```...