What's new in Django community blogs?

Episode 10 - User Auth

Nov. 24, 2020 » Django on Matt Layman » [Archived Version]

On this episode, we’re going to look at working with users in a Django project. We’ll see Django’s tools for identifying users and checking what those users are permitted to do on your website. Listen at djangoriffs.com. Last Episode On the last episode, I explained the structure of Django application. We also talked why this structure is significant and how Django apps benefit the Django ecosystem as a tool for sharing code.

Read More

Django Software Foundation - 2021 Board Nominations

Nov. 20, 2020 » Django Chat » [Archived Version]

Nominations are due November 30th for next year’s Board of the Django Software Foundation, the non-profit that runs Django. We discuss the DSF’s mission, day-to-day work, and how to become more involved in the community.

Read More

Django Testing Cheat Sheet

Nov. 19, 2020 » Valentino Gagliardi - Django RSS Feed » [Archived Version]

A cheat-sheet of common testing recipes for Django applications.

Read More

Make A Hugo Static Blog Inside A Django App

Nov. 16, 2020 » Django on Matt Layman » [Archived Version]

I have a side project and I’d like to do some content marketing to potential customers to show how my product is useful. To do this, I need a blog for my project. Maybe you need a blog for your project too. Have you thought about where your blog will exist on the internet? For me, I considered two choices: Use a subdomain like blog.mysite.com. Use a route style like mysite.

Read More

Django @Instagram - Carl Meyer

Nov. 11, 2020 » 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

Detecting N+1 queries in Django with unit testing

Nov. 6, 2020 » Valentino Gagliardi - Django RSS Feed » [Archived Version]

Too lazy to install Django debug toolbar or nplusone? Uncover N+1 queries in Django with a unit test!

Read More

User Authentication

Nov. 4, 2020 » Django on Matt Layman » [Archived Version]

In the previous Understand Django article, we learned about the structure of a Django application and how apps are the core components of a Django project. In this article, we’re going to dig into Django’s built-in user authentication system. We’ll see how Django makes your life easier by giving you tools to help your web application interact with the users of your site. From Browser To DjangoURLs Lead The WayViews On ViewsTemplates For User InterfacesUser Interaction With FormsStore Data With …

Read More

Debugging async Django under Uvicorn with Pycharm

Oct. 31, 2020 » Valentino Gagliardi - Django RSS Feed » [Archived Version]

In this short guide you learn how to debug Django under Uvicorn with Pycharm.

Read More