Explore >> Select a destination


You are here

akaptur.github.com
| | eli.thegreenplace.net
4.7 parsecs away

Travel
| | [AI summary] This article explains how to add a new 'until' statement to Python's compiler by modifying its grammar, AST generation, and bytecode compilation processes.
| | initialcommit.com
4.2 parsecs away

Travel
| | In this article, you'll take a closer look at the return statement and how to fix the return outside function Python error.
| | www.justus.pw
3.7 parsecs away

Travel
| | [AI summary] This article explains how to use Python's disassembly library to inspect and understand CPython's byte code, including examples of disassembling a simple function.
| | www.laceyhenschel.com
28.9 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...