django-planet

What's new in Django community blogs?

Using Hypothesis and Schemathesis to Test FastAPI

Sept. 6, 2022 » TestDriven.io » [Archived Version]

This article looks at how property-based testing via Hypothesis and Schemathesis can be used to test FastAPI.

Read More

Continuously Deploying Django to Linode with Docker and GitHub Actions

Sept. 2, 2022 » TestDriven.io » [Archived Version]

In this tutorial, we'll look at how to configure GitHub Actions to continuously deploy a Django and Docker application to Linode.

Read More

flake8-bugbear - Building SaaS with Python and Django #143

Sept. 1, 2022 » Django on Matt Layman » [Archived Version]

In this episode, I updated my app to use flake8-bugbear. I fixed the issues that popped up and talked about strategies to manage adding new tools.

Read More

flake8-bugbear - Building SaaS #143

Sept. 1, 2022 » Django on Matt Layman » [Archived Version]

In this episode, I updated my app to use flake8-bugbear. I fixed the issues that popped up and talked about strategies to manage adding new tools.

Read More

Django @Instagram - Carl Meyer (Ep78 Replay)

Aug. 31, 2022 » Django Chat » [Archived Version]

Carl is a Software Engineer at Instagram and a Django Core developer. We discuss his contributions to Django and how Django and Python are used at Instagram today.

Read More

Finish Teacher Checklist - Building SaaS with Python and Django #142

Aug. 25, 2022 » Django on Matt Layman » [Archived Version]

In this episode, we finished off the teacher checklist feature in the homeschool app. I tied together all the loose ends, checked the feature end to end, and wrote the unit tests to complete the whole effort.

Read More

Finish Teacher Checklist - Building SaaS #142

Aug. 25, 2022 » Django on Matt Layman » [Archived Version]

In this episode, we finished off the teacher checklist feature in the homeschool app. I tied together all the loose ends, checked the feature end to end, and wrote the unit tests to complete the whole effort.

Read More

Use partial() With Django’s transaction.on_commit() to Avoid Late-Binding Bugs

Aug. 21, 2022 » Adam Johnson » [Archived Version]

Django’s transaction.on_commit() allows you to run a function after the current database transaction is committed. This is useful to ensure that actions with external services, like sending emails, don’t run until the relevant data is definitely saved. Although Django’s documentation says that on_commit() takes a “function …

Read More

Use partial() With Django’s transaction.on_commit() to Avoid Late-Binding Bugs

Aug. 21, 2022 » Adam Johnson » [Archived Version]

Django’s transaction.on_commit() allows you to run a function after the current database transaction is committed. This is useful to ensure that actions with external services, like sending emails, don’t run until the relevant data is definitely saved. Although Django’s documentation says that on_commit() takes a “function …

Read More

Teacher Checklist Editing - Building SaaS with Python and Django #141

Aug. 18, 2022 » Django on Matt Layman » [Archived Version]

In this episode, I returned to the teacher checklist feature and started work on the edit page that will allow users to customize what they see on the checklist.

Read More