dev/python

Comprehensive Python Cheatsheet Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.
Configuring uWSGI for Production Deployment | Bloomberg LP Tips for developers to avoid known gotchas when configuring uWSGI to host services at scale -- while still providing a base level of defensiveness and high reliability
Django ORM Performance :: TheOrangeOne Django already does some pretty incredible things when it comes to performance, especially in the ORM layer. The lazy loading, fluent interface for querying means it’ll only fetch the data you need, when you need it. But it can’t handle everything for you, and often needs some help to work…
Django Packages : Reusable apps, sites and tools directory for Django Django Packages stores information on fetched packages and provides easy comparison tools for them. Public APIs include PyPI, GitHub, and Bitbucket.
How to integrate Django to React. In this tutorial I make an empty Hello… | by Rohanmalo | Medium In this tutorial I make an empty Hello World Django React app. If you guys thinking this is a heard thing, Nooo….. This is Super easy
Improve Serialization Performance in Django Rest Framework | Haki Benita When a developer chooses Python, Django, or Django Rest Framework, it's usually not because of its blazing fast performance. All of this doesn't mean performance is not important. As this story taught us, major performance boosts can be gained with just a little attention, and a few small changes.
Is Django too slow? A discussion of Django's performance
Memory Management in Python – Real Python Get ready for a deep dive into the internals of Python to understand how it handles memory management. By the end of this article, you’ll know more about low-level computing, understand how Python abstracts lower-level operations, and find out about Python’s internal memory management algorithms.
Optimize Django memory usage | Guguweb Sometimes the Django ORM can use a lot of RAM when dealing with very large querysets. Follow these simple methods to optimize Django memory usage.
Python’s “Disappointing” Superpowers - lukeplant.me.uk A response to Hillel Wayne’s “I am disappointed by dynamic typing”
Solving Performance Problems in the Django ORM | by Kyle Hanson | Medium Django is a wonderful tool which has helped thousands boost their productivity when writing web applications. Like any framework, when you…
Textualize/textual: Textual is a Rapid Application Development framework for Python. Build sophisticated user interfaces with a simple Python API. Run your apps in the terminal and (coming soon) a web browser! The lean application framework for Python. Build sophisticated user interfaces with a simple Python API. Run your apps in the terminal and a web browser. - Textualize/textual
ujson · PyPI Ultra fast JSON encoder and decoder for Python
Using DRF Effectively to Build Cleaner and Faster APIs in Django Let us explore and customize Django REST Framework’s (DRF) lesser-known but useful features.