Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Django RSS Feed Tutorial
Django comes with a built-in [syndication feed](https://docs.djangoproject.com/en/dev/ref/contrib/syndication/) for dynamically generating [RSS (Really Simple Syndication)](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. These feeds contain recently updated content on a website, and users can subscribe … -
Django Best Practices: Docker
[Docker](https://www.docker.com/) is a very popular tool for managing Django projects. Many professional developers use it but I find it is still confusing to many newcomers. In this post I'll attempt … -
Django Best Practices: Imports
Imports are an inevitable part of Python and Django development. [Pep8](https://pep8.org/#imports), which is the official style guide for Python, recommends imports be placed at the top of the file, on … -
Django Best Practices: User permissions
Setting user permissions is a common part of most Django projects and can become quite complex quickly. We'll use the Blog example from my [Django for Beginners](http://djangoforbeginners.com) book as an … -
Django News - Real-time chat application in Django 4.2 with Server-Sent Events - May 19th 2023
News Django database defaults coming to 5.0 Lily Foote just added support for database defaults on fields. Coming to Django 5.0 in December. This is a massive effort--18 years after the ticket was created. Thanks also to Simon Charette, Adam Johnson, and Mariusz Felisiak for reviews. github.com Django Software Foundation Django 5.x Steering Council Election Results The Steering Council for the Django 5.x release cycle with 74 votes received out of 268 eligible voters: Simon Charette Andrew Godwin Adam Johnson James Bennett djangoproject.com Django Software Foundation monthly meeting, May 13, 2023 Meeting minutes for DSF Board monthly meeting, May 13, 2023. djangoproject.com Django Software Foundation May 2023 Grants A list of grants made by the DSF in support of the community for May 2023. djangoproject.com Sponsored Link Django for Beginners/APIs/Professionals Level up your Django knowledge with Django for Beginners, Django for APIs, or Django for Professionals, or gift it to a friend. Sample chapters are available to preview for free. Bundle discount available! learndjango.com Articles Writing a chat application in Django 4.2 using async StreamingHttpResponse, Server-Sent Events and PostgreSQL LISTEN/NOTIFY A very, very cool example of using "old" tech to solve new problems, aka using server-sent events, Psycopg3, and Django … -
Django REST Framework Authentication
This tutorial looks at how to add authentication to Django REST Framework with django-allauth and dj-rest-auth. -
New SaaS From Scratch - Building SaaS with Python and Django #160
In this episode, I started a brand new SaaS project from scratch. This new SaaS, a journal service, will allow users to journal via email and be provided with past posts as a engaging prompt. -
New SaaS From Scratch - Building SaaS #160
In this episode, I started a brand new SaaS project from scratch. This new SaaS, a journal service that will be at journeyinbox.com, will allow users to journal via email and be provided with past posts as a engaging prompt. -
Django Form Validation Guide
In this tutorial, I will talk about some ways to do form validation in Django, and compare them to help you choose the best way in your project. -
Giving It All Away: My Philanthropic Plan
A major personal accomplishment in 2022 – something I’m proud of – was creating a philanthropic framework. My wife and I intend to use this framework to guide our charitable giving for the rest of our lives, with the explicit goal of giving away almost all of our wealth in our lifetimes. Here’s some backstory, and all the details of our plan and the framework that guides our giving. -
Django News - DjangoCon Africa 2023 announced! - May 12th 2023
News Announcing DjangoCon Africa 2023 The African Django community is excited to announce the first DjangoCon Africa event, taking place this year in Zanzibar, Tanzania, from 6th - 11th November 2023. djangoproject.com DjangoCon US Call for Proposals - Ends May 15th! The CFP is open until May 15th. There are several posts listed in this issue with suggested talk topics. djangocon.us Python Software Foundation Board Election Dates for 2023 The Python Software Foundation Board election timeline has been posted for the 2023 election. There will be four seats open on the PSF board. blogspot.com Wagtail CMS Going Green with Google Summer of Code This year, Google Summer of Code has accepted two proposals from the Wagtail community. The team is excited to see what these collaborations will bring, following impressive contributions made in the past year. wagtail.org Meet Damilola Oladele, Our First Technical Writer for Google Season of Docs 2023 The Wagtail community welcomes its first technical writer, Damilola Oladele, through the Google Season of Docs (GSoD) program. This initiative aims to enhance and modernize Wagtail's developer documentation, making it easier for new community members to learn about the latest versions and features of Wagtail. wagtail.org Sponsored Link Sponsor Django … -
Django Admin ordered how you like
I got so tired and irritated by Django's alphabetical sorting of apps and models in the admin. def get_unordered_app_list(self, request): """ Return a list of all the installed apps that have been registered in this site in the order they were registered. """ app_dict = self._build_app_dict(request) app_list = app_dict.values() return app_list admin.AdminSite.get_app_list = get_unordered_app_list Post to Del.icio.us -
Django News - Django security releases: 4.2.1, 4.1.9, 3.2.19 - May 5th 2023
News Django security releases issued: 4.2.1, 4.1.9, and 3.2.19 The Django team announces the release of Django 4.2.1, Django 4.1.9, and Django 3.2.19, addressing a security issue and urging users to upgrade promptly. djangoproject.com Wagtail 5.0 is now available Featuring dark mode, more image options with SVG support, enhanced accessibility checker, and more. wagtail.org Sponsored Link Django for Beginners/APIs/Professionals Level up your Django knowledge with Django for Beginners, Django for APIs, or Django for Professionals, or gift it to a friend. Sample chapters are available to preview for free. Bundle discount available! learndjango.com Articles 3 Tips to Prepare Your Publisher Website for Traffic Spikes Some tips for how to prepare for your website going viral. lincolnloop.com Django for Beginners 4.2 Update What's new in the 4.2 edition update to the book, Django for Beginners. wsvincent.com CSRF and Trusted Origins in Django 4.x+ A quick note and advice on managing CSRF and Trusted Origins. noumenal.es How we added SVG support to Wagtail 5.0 Wagtail 5.0 to introduce SVG image support, sponsored by YouGov, with a detailed blog post on enabling the feature, security, and implementation insights. wagtail.org Events PyCon AU Call for Proposals The CFP is open until May 14th and … -
django CMS is a great toolbox
Here at Lincoln Loop, for the past 15 years, we have built countless Digital experiences (DXP) that help to move our customers’ digital transformation forward. The ultimate result of what is often a long-term engagement is often a code base that is composed of tens of thousands of lines of code that assemble and extend some key Python / Django components: django CMS django-filer The goal here is not to give you a long list of vetted dependencies but to tell you why these two components have been at the core of the solutions we have delivered multiple times. First, over the years, we learned how to scale this stack efficiently to millions of pageviews a day without worrying about going down every time content gets popular. Eight years ago, I wrote a book about it, High-performance django, with Peter Baumgartner. The secret is to do as little work as possible on every pageview and cache as many of the results as possible. However, this topic differs from the point I want to develop in this article. Why django CMS is a great toolbox Extend your models with a PlaceholderField One outstanding feature of django CMS is that it lends … -
Test and Code - Brian Okken
Test and Code podcast Python Testing with pytestDjango Testing Tutorial pytest-django Testing in Django: Official Docs awesome-django repo testing section PythonBytes 204 w/ Will and Carlton Support the ShowThis podcast does not have any ads or sponsors. To support the show, please consider purchasing a book, signing up for Button, or reading the Django News newsletter. -
Haproxy dummy backends: don't disable them in 2.2
We've got quite a number of different websites on different servers. We use a central haproxy server (well, two, for fail-over) to distribute the various domains to the (django) websites. There are two special categories I wanted to handle: Internal-only sites that are only available on our interal IP range. When accessed from elsewhere, you should get a "403" error with an error page saying it is an internal-only site plus a hint to use VPN. Domains that aren't found. A 404 with a "we don't know about this one" error message. With haproxy 2.2, which is the version we're using now on ubuntu 22.04, there's support for this with http return status 404 or something like that. Until two months ago, we were on an older ubuntu with haproxy 1.8. There the trick to accomplish it was to use dummy backends: backend no-domain-found # No servers here, it is used for showing the "404" page. Well, haproxy # knows no 404 itself, so we let the empty backend generate a 503, but we # sneakily return a 404 error page (including 404 header). See # https://serverfault.com/q/496460/52614 errorfile 503 /some/where/503-as-404.http disabled # Don't show it in the interface. backend deny-external … -
Weeknotes (2023 week 17)
Weeknotes (2023 week 17)Birthday Another year achieved. Feels the same as last year. I’m glad. feincms3-cookiecontrol I have released feincms3-cookiecontrol 1.3. Mostly cleanups since 1.2, but also a new translation (already announced here). The script size has been reduced from 4519 bytes to 4228 bytes (-6.5%) while keeping all features intact. The reduction is totally meaningless but it was fun to do. oEmbed I have been digging into the oEmbed spec a bit. I didn’t even know that a central list of providers exists. Noembed still works great to embed many different types of content but I worry more and more about its maintenance state. Reimplementing the interesting parts shouldn’t be that hard, but maybe I don’t have to do this myself. oEmbedPy looks nice, I hope I get a chance to play around with it. -
Django News - Django 5.x Technical Board Candidate Registration - Apr 28th 2023
News Django 5.x Technical Board Candidate Registration - Update An update on candidates for the Django Technical Board. djangoproject.com Introducing Python Package Index Organizations The Python Package Index (PyPI) adds Organizations. pypi.org urllib3 v2.0.0 is now generally available urllib3 is the most installed Python package of all time and, after 12 years, has finally moved from v1.0 to v2.0. sethmlarson.dev Articles How to have Python show warnings when running Django Two ways to see deprecation warnings when running your Django project. untangled.dev Using Django’s template loaders to configure Tailwind An elegant way to tell Tailwind where your Django templates are located. noumenal.es authentik on Django: 500% slower to run but 200% faster to build Debating the pros/cons of Django for building a startup. goauthentik.io sqlite-history: tracking changes to SQLite tables using triggers (also weeknotes) On the beginnings of a new project, sqlite-history, from Simon Willison. simonwillison.net Forum How many people actually use Argon2? The official docs have recommended its usage since Django 1.10, yet it's unclear how widely used it is in the real world. djangoproject.com Events DjangoCon Europe - Things to Do A helpful list of the many things to do nearby if you have some free time around … -
Python Exercises and Behind the Scenes - Building SaaS with Python and Django #159
In this episode, we covered more intro Python exercises from Exercism. Then I did some behind the scenes work to make some improvements to my stream content. -
Python Exercises and Behind the Scenes - Building SaaS #159
In this episode, we covered more intro Python exercises from Exercism. Then I did some behind the scenes work to make some improvements to my stream content. -
20 Years of Python - Brett Cannon
Brett's personal site @brettcannon on GitHub and Fosstodonpython-launchermicrovenvLLMs and the Business of Truth The Chinese Room ArgumentPEP 4 - Deprecation of Standard Modules Support the ShowThis podcast does not have any ads or sponsors. To support the show, please consider purchasing a book, signing up for Button, or reading the Django News newsletter. -
Accepting Payments with Stripe, Vue.js, and Flask
This tutorial details how to develop a web app for selling products using Stripe, Vue.js, and Flask. -
Deploying a Flask and Vue App to Heroku with Docker and Gitlab CI
This tutorial looks at how to containerize a full-stack web app powered by Flask and Vue and deploy it to Heroku using Gitlab CI. -
Weeknotes (2023 week 16)
Weeknotes (2023 week 16) Experiments with Stable Diffusion A friend and myself threw a few scripts together to automatically finetune a Stable Diffusion model using images downloaded from Google Image search. It’s terrifying how easy and fast generating fake news including photorealistic images can be and will be already. And seeing how fast those models improve it’s just a matter of time until we can trust photos even less than now. Manipulating images has been possible for a long time of course, but it hasn’t been a “commodity” until now. I definitely also see upsides in the new machine learning technologies but I fear that there’s a real danger to trust, and in extension to democracy. This technology and what we did will be a part of an upcoming SRF Kulturplatz broadcast, or so I hope. It’s high time that the public knows what’s possible. It’s about ,edia literacy really. I’m not that pessimistic though. I just hope that this time the thoughtfulness will prevail over pure profit seeking. (Did I really write that.) django-ckeditor Many people are noticing that the CKEditor 4 integration for Django doesn’t work that well when using the dark color scheme of the Django admin … -
Django News - Django 5.x Technical Board Election Registration - Apr 21st 2023
News Announcement of 5.x Technical Board Election Registration A new Technical Board election is coming up. All individual DSF members can vote or you can register to vote, too. djangoproject.com Google Season of Docs: Creating Wagtail Developer Onboarding Tutorials After a positive experience with Outreachy, the Wagtail core team participates in Google Season of Docs to enhance onboarding tutorials for developers and improve engagement with technical writers in their community. Google Season of Docs is an annual program that supports open-source documentation and provides technical writers with valuable experience. wagtail.org Django Software Foundation DSF Board monthly meeting, April 13, 2023 djangoproject.com Sponsored Link Sponsor Django News django-news.com Articles Chatting with Django’s documentation using langchain, Chroma & OpenAI APIs Explore new AI tools for software development by building a Python CLI application that indexes Django's documentation and answers questions within that context using OpenAI's Embeddings & GPT APIs, Chroma, and langchain. hacksoft.io Running Tasks Concurrently in Django Asynchronous Views From Django Fellow Mariusz Felisiak, an overview of async in Python and Django, and how to write async views today. fly.io How to add Typescript to the Django Project An overview of Typescript and examples of how to add to existing Django …