Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
- 
        How to integrate Python with Airtable[[ youtube id="ZiAulC50Qgo" ]...
- 
        But what are Django signals?Watch this one on [YouTube](ht...
- 
        Django vs Node.jsIn this post, I'll address a c...
- 
        Deploy Django to DigitalOcean App PlatformIn [Prepare Django 3 for Digi...
- 
        Prepare Django for Digital Ocean App PlatformThis post is a reference guide...
- 
        Version Control Basics & Git for Try Django 3.2Putting code into production i...
- 
        Remote Redis Servers for Development### Using Virtual Machines for...
- 
        Getting Started with DigitalOcean CLI `doctl` & DjangoIn [Try Django 3.2](https://ww...
- 
        CI/CD Github Workflow for Django & DigitalOcean App PlatformWhenever you aim to release co...
- 
        AI Model Download PipelineIn [Build a Spam Classifier](h...
- 
        Build a Spam Classifier with KerasWith deep learning and AI, han...
- 
        Push Secure Directories with Encryption PipelinesIn the [Ai as an API](https://...
- 
        Django Static Files in Production on DigitalOcean SpacesIn this post, we'll use Digita...
- 
        Django on DockerAs you may know, Django is a w...
- 
        Django & Github ActionsGithub actions is an amazing w...
- 
        A Python JWT Client for Django Rest Framework simplejwtIn this blog post, we'll look ...
- 
        Download the MovieLens Dataset with PythonIn our [Django & Machine Learn...
- 
        You Can Build Portable Binaries of Python ApplicationsContrary to popular belief, it’s possible to ship portable executables of Python applications without sending its users to Python packaging hell.
- 
        Using Hypothesis and Schemathesis to Test FastAPIThis article looks at how property-based testing via Hypothesis and Schemathesis can be used to test FastAPI.
- 
        Programmatically render a NextJS page without a server in NodeIf you use getServerSideProps() in Next you can render a page by visiting it. E.g. GET http://localhost:3000/mypages/page1 Or if you use getStaticProps() with getStaticPaths(), you can use npm run build to generate the HTML file (e.g. .next/server/pages directory). But what if you don't want to start a server. What if you have a particular page/URL in mind that you want to generate but without starting a server and sending an HTTP GET request to it? This blog post shows a way to do this with a plain Node script. Here's a solution to programmatically render a page: #!/usr/bin/env node import http from "http"; import next from "next"; async function main(uris) { const nextApp = next({}); const nextHandleRequest = nextApp.getRequestHandler(); await nextApp.prepare(); const htmls = Object.fromEntries( await Promise.all( uris.map((uri) => { try { // If it's a fully qualified URL, make it its pathname uri = new URL(uri).pathname; } catch {} return renderPage(nextHandleRequest, uri); }) ) ); console.log(htmls); } async function renderPage(handler, url) { const req = new http.IncomingMessage(null); const res = new http.ServerResponse(req); req.method = "GET"; req.url = url; req.path = url; req.cookies = {}; req.headers = {}; await handler(req, res); if (res.statusCode !== 200) { throw new Error(`${res.statusCode} on …
- 
        Continuously Deploying Django to Linode with Docker and GitHub ActionsIn this tutorial, we'll look at how to configure GitHub Actions to continuously deploy a Django and Docker application to Linode.
- 
        Django News - Wagtail 4.0 released - Sep 2nd 2022News Wagtail 4.0 released A quick tour of Wagtail 4.0 demoing new features around creating and managing content. See the full release notes as well. wagtail.org Top Programming Languages 2022 - IEEE Spectrum Python’s still No. 1. ieee.org django-developers #21978 on inclusion of a production-ready web server Updated discussion around an old ticket to include a production-ready web server in Django. google.com Sponsored Ad Wagtail CMS in Action Discount! Wagtail CMS in Action is a fun guide to building websites with Wagtail, a content management system based on Python and Django, brought to you by Kalob Taulien, a core member of the Wagtail development team. Here is a 30% off discount code!: nldjangonws22 mng.bz Events Everything you need to know about DjangoCon US 2022 This week the DjangoCon US organizers, including Jeff, recorded a Twitter Space to help get the word out about the return of DjangoCon US to their first in-person/hybrid event since 2019. twitter.com DjangoCon US 2022 Discounted Tickets! The DjangoCon US team would like to give our readers a 10% off discount code, good for in-person, online, and even tutorials! ti.to Articles Google Summer of Code - Blog 2 Deepak Dinesh is a Google Summer of Code …
- 
        flake8-bugbear - Building SaaS with Python and Django #143In 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.
- 
        flake8-bugbear - Building SaaS #143In 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.
- 
        Django @Instagram - Carl Meyer (Ep78 Replay)OddBirdDjango @ Instagram - Django Under the Hood 2016Testing & Django - PyCon 2012PyCon 2017 Keynote - Road to Python 3 at InstagramPython at Scale: Strict ModulesSupport 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.