django-planet

What's new in Django community blogs?

Stripe Checkout - Building SaaS with Python and Django #182

Feb. 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we did work to get the Stripe checkout session going. We set up Stripe Product and Price objects to get the subscription plan ready and got the Stripe checkout session working mostly end-to-end

Read More

Stripe Checkout - Building SaaS #182

Feb. 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we did work to get the Stripe checkout session going. We set up Stripe Product and Price objects to get the subscription plan ready and got the Stripe checkout session working mostly end-to-end

Read More

Django security releases issued: 5.0.2, 4.2.10, and 3.2.24

Feb. 6, 2024 » The Django weblog » [Archived Version]

In accordance with our security release policy, the Django team is issuing Django 5.0.2, Django 4.2.10, and Django 3.2.24. These releases address the security issue detailed below. We encourage all users of Django to upgrade as soon as possible. CVE-2024-24680: Potential denial-of-service in intcomma template filter The intcomma template filter was subject to a potential denial-of-service attack when used with very long strings. Thanks Seokchan Yoon for the report. This issue has severity &quo…

Read More

Django SQLite Benchmark

Feb. 6, 2024 » Anže’s Blog » [Archived Version]

How to configure SQLite for better throughput with Django.

Read More

Django REST Framework and Vue versus Django and HTMX

Feb. 5, 2024 » TestDriven.io » [Archived Version]

This article compares the development experience with Vue and Django REST Framework against HTMX and Django.

Read More

Improving Django testing with seed database

Feb. 5, 2024 » Posts on Three Letter Acronym » [Archived Version]

The code used as example in this post can be found in this git repo At FOSDEM24, Denny Biasiolli gave an excellent talk on optimizing Django migrations for testing. This talk has a great run-through of the migration flow in Django, and different ways to improve the time and resources spent applying Django migrations. This can be further improved by using a seed database, especially in CI/CD pipelines. Seed databases A seed database contains an initial set of data, for instance a set of migratio…

Read More

Hello World

Feb. 4, 2024 » Posts on Three Letter Acronym » [Archived Version]

Test First blog page on the intertubes print("henlo")

Read More

"En-Rich" your Python testing

Feb. 3, 2024 » REVSYS Blog » [Archived Version]

"En-Rich" your Python testing

Read More

Neapolitan 24.2 release

Feb. 2, 2024 » Carlton's latest posts. » [Archived Version]

A quick flit publish and Neapolitan 24.2 is available on PyPI. $ pip install -U neapolitan Go get yours now! 🚀 Quicker template overrides The release adds a new mktemplate management command, that lets you quickly bootstrap an override of your active neapolitan templates, on a per model and per CRUD action basis. This makes ”Oh, I need to customise the list template” much easier, so you don’t have to break your flow. Basic usage is like this: $ ./manage.py mktemplate cakeshop.Ingredient …

Read More

Django News - htmx 2.x Migration Guide - Feb 2nd 2024

Feb. 2, 2024 » Django News » [Archived Version]

News PSF News: Kicking off 2024 strong, thanks to our community! The PSF is starting the year feeling energized and supported, thanks to each of you who shared or donated to the year-end fundraiser and membership drive. blogspot.com </> htmx ~ htmx 1.x → htmx 2.x Migration Guide The purpose of this guide is to provide instructions for migrations from htmx 1.x to htmx 2.x. We place a very high value on backwards compatibility, so in m…

Read More