Thread
Stories related to "REST in Peace? Django's Framework Problem" across the full archive.
Modern wildfires are less frequent but more severe due to fire suppression and fuel buildup. Scientists urge prescribed burns and fuel treatments to reduce wildfire risks. Fewer wildfires occur in North American forests today than in past centuries, but this decline has increased the risk of more in...
Hi everyone,<p>I have been working on a new Filter backend for Django REST framework.<p>The de-facto library for filtering and query parameter handling is django-filter, but I had some use cases where it fell short. Here are some features:<p>You use serializer fields to do parsing and validation. No...
I wanted Claude to interact directly with my Django app data, so I built a library that exposes Django REST Framework APIs as callable MCP tools with just a few lines of code.<p><pre><code> @mcp_viewset() # <-- Just add this decorator to any ViewSet!
class CustomerViewSet(ModelViewSet):
...