Disable DRF Browsable API

Django Rest Framework includes a UI for interacting with your API. Here’s how to turn it off. ...

December 3, 2025 · 1 min · Jake Worth

Django Routing 101

Something I’ve taken a while to get under my fingers is Django’s URL routing conventions. Here’s a brief summary. ...

November 7, 2025 · 1 min · Jake Worth

Unpacking MessagePack

SALT messages are encoded with a library called msgpack, the Python implementation of MessagePack. How can we read them? ...

June 5, 2025 · 1 min · Jake Worth

Python String Interpolation

Python string interpolation is available via few of interfaces, as Chris at Hashrocket taught me. ...

May 27, 2025 · 1 min · Jake Worth

Print Python Function Definition With Getsource

If I’ve defined a function in the Python REPL, I can read its definition with inspect.getsource. ...

May 16, 2025 · 1 min · Jake Worth

Python REPL Help

In the Python REPL, the help function provides a help message about its argument. ...

May 16, 2025 · 1 min · Jake Worth