django-planet

What's new in Django community blogs?

Django security releases issued: 4.1.6, 4.0.9, and 3.2.17

Feb. 1, 2023 » The Django weblog » [Archived Version]

In accordance with our security release policy, the Django team is issuing Django 4.1.6, Django 4.0.9, and Django 3.2.17. These releases addresses the security issue detailed below. We encourage all users of Django to upgrade as soon as possible. CVE-2023-23969: Potential denial-of-service via Accept-Language headers The parsed values of Accept-Language headers are cached in order to avoid repetitive parsing. This leads to a potential denial-of-service vector via excessive memory usage if larg…

Read More

Securing FastAPI with JWT Token-based Authentication

Jan. 31, 2023 » TestDriven.io » [Archived Version]

This tutorial shows how to secure a FastAPI application with JWT Token-based Authentication.

Read More

Django vs. Flask in 2023: Which Framework to Choose

Jan. 30, 2023 » TestDriven.io » [Archived Version]

In this article, we'll look at the best use cases for Django and Flask along with what makes them unique, from an educational and development standpoint.

Read More

Using Testing Library with Selenium in Python

Jan. 30, 2023 » Anže’s Blog » [Archived Version]

Why and how to use the Testing Library with Selenium in Python.

Read More

Storing Django Static and Media Files on Amazon S3

Jan. 29, 2023 » TestDriven.io » [Archived Version]

This tutorial shows how to configure Django to load and serve up static and media files, public and private, via an Amazon S3 bucket.

Read More

What Django Deployment is Really About

Jan. 29, 2023 » james.walters.click » [Archived Version]

Django has this reputation for being hard to deploy. I don't think that's really true. I think that people haven't taken the time to explain to beginners the concepts you're thinking about when it comes to deployment. We focus so much on teaching people how to build apps in Django …

Read More

Django News - Bleach derecation - Jan 27th 2023

Jan. 27, 2023 » Django News » [Archived Version]

News Bleach 6.0.0 release and deprecation Bleach, the Python library for sanitizing and linkifying text in HTML, released 6.0.0 and was deprecated because html5lib is no longer actively maintained. bluesock.org The PSF is hiring a Security Developer-in-Residence! The Python Software Foundation (PSF) is happy to announce the launch of a year-long security enhancement initiative that will include a security audit and the creation of a new Se…

Read More

The Road Less Traveled: Understanding XPaths

Jan. 26, 2023 » james.walters.click » [Archived Version]

The other day I started writing a web automation tool to do some chores for me at work. This was my first time using Selenium, a handy dandy library for driving web browsers in code. When it comes to getting a hold of elements in the page you want to …

Read More

Integrating the Masonite ORM with FastAPI

Jan. 25, 2023 » TestDriven.io » [Archived Version]

This tutorial looks at how to use the Masonite ORM with FastAPI.

Read More

Creating a Custom User Model in Django

Jan. 22, 2023 » TestDriven.io » [Archived Version]

This article explains step-by-step how to create a custom user model in Django.

Read More