Explore >> Select a destination


You are here

speakerdeck.com
| | dygalo.dev
7.1 parsecs away

Travel
| | Its been slightly more than a year since I started working on Schemathesis, and in this article, I want to give a summary of what we accomplished during this year and what you can expect from this project in the future.
| | rethinkdb.com
7.8 parsecs away

Travel
| |
| | richardtier.com
7.5 parsecs away

Travel
| | Django Rest Framework integrates well with models to provide out of the box validation, and ModelSerializers allow futher fine-grained custom validation. However, if you're not using a model as the resource of your endpoint then the code required for custom validation of complex data structure can get hairy. If there is a heavily nested data...
| | www.laceyhenschel.com
10.3 parsecs away

Travel
| Sometimes the endpoints you get when you use a ModelViewSet aren't enough and you need to add extra endpoints for custom functions. To do this, you could use the APIView class and add a custom route to your `urls.py` file, and that would work fine. But if you have a viewset already, and you feel like this new endpoint belongs with the other endpoints in your viewset, you can use DRF's @action decorator to add a custom endpoint. This means you don't have to change your urls.py -- the method you decorate w...