PyCharm: PyCharm 2024.1.2: What’s New!
PyCharm 2024.1.2 is here with features designed to enhance your productivity and streamline your development workflow. This update includes support for DRF viewsets and routers in the Endpoints tool...
View ArticleMike Driscoll: Episode 42 – Harlequin – The SQL IDE for Your Terminal
This episode focuses on the Harlequin application, a Python SQL IDE for your terminal written using the amazing Textual package.I was honored to have Ted Conbeer, the creator of Harlequin, on the show...
View ArticleAnarcat: 2024-05-29-playing-with-fonts-again
meta title="Playing with fonts again"I am getting increasingly frustrated by Fira Mono's lack of italic support so I am looking at alternative fonts again.This time I seem to be settling on either...
View ArticleEuroPython: How EuroPython Proposals Are Selected: An Inside Look
With the number of Python-related conferences around the world, many people might wonder how the selection process is configured and performed. For the largest and oldest European Python conference,...
View ArticleIan Ozsvald: What I’ve been up to since 2022
This has been terribly quiet since July 2022, oops. It turns out that having an infant totally sucks your time! In the meantime I’ve continued to build up:Training courses– I’ve just listed my new Fast...
View ArticlePython⇒Speed: Let’s optimize! Running 15× faster with a situation-specific...
pre { white-space: pre; overflow-x: auto; font-size: 80%; } Let’s speed up some software! Our motivation: we have an image, a photo of some text from a book. We want to turn it into a 1-bit image, with...
View ArticleReal Python: The Real Python Podcast – Episode #206: Building Python Unit...
How do you start adding unit tests to your Python code? Can the built-in unittest framework cover most or all of your needs? Christopher Trudeau is back on the show this week, bringing another batch of...
View ArticleZero to Mastery: Python Monthly Newsletter 💻🐍
54th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python Security Best Practices, State of Python 2024, Prompt Engineering, and much more. Read the full newsletter to get up-to-date...
View ArticleTryton News: Newsletter May 2024
During the last month we focused on fixing bugs, improving the behaviour of things, speeding-up performance issues - building on the changes from our last release. We also added some new features which...
View ArticleMatt Layman: About, FAQ, and Home Page - Building SaaS with Python and Django...
In this episode, we worked on some core pages to round out the JourneyInbox user interface. This led us to work updating UI layout, writing copy, and doing other fundamentals for making templated pages.
View ArticleZato Blog: New API Integration Tutorial in Python
New API Integration Tutorial in Python 2024-06-02, by Dariusz Suchojad Do you know what airports, telecom operators, defense forces and health care organizations have in common?They all rely heavily on...
View ArticleRobin Wilson: Introducing pyAURN – a Python package for accessing UK air...
I realised recently that I’d never actually blogged about my pyAURN package – so it’s about time that I did.When doing some freelance work on air quality a while back, I wanted an easy way to access UK...
View ArticleReal Python: Quiz: String Interpolation in Python: Exploring Available Tools
Test your understanding of Python’s tools for string interpolation, including f-strings, the .format() method, and the modulo operator.Take this quiz after reading our String Interpolation in Python:...
View ArticlePyCharm: The State of Django 2024
Are you curious to discover the latest trends in Django development?In collaboration with the Django Foundation, PyCharm surveyed more than 4,000 Django developers from around the globe and analyzed...
View ArticleMike Driscoll: Python Logging Book Released!
The latest Python book from Michael Driscoll is now out. You can get Python Logging today on any of your favorite platforms! The Kindle version of the book is only 99 cents for a limited time!What...
View ArticleTestDriven.io: Approximate Counting in Django and Postgres
This article looks at how to speed up counting with Django and PostgreSQL.
View ArticleReal Python: String Interpolation in Python: Exploring Available Tools
String interpolation allows you to create strings by inserting objects into specific places in a target string template. Python has several tools for string interpolation, including f-strings, the...
View ArticlePython Morsels: Python's many command-line utilities
Every command-line tool included with Python. These can be run with python -m module_name.Table of contentsHow -m worksGeneral-purpose CLI toolsEspecially handy on Windows machinesWorking with Python...
View ArticleTest and Code: 221: How to get pytest to import your code under test
We've got some code we want to test, and some tests.The tests need to be able to import the code under test, or at least the API to it, in order to run tests against it.How do we do that? How do we set...
View ArticleTestDriven.io: Storing Django Static and Media Files on DigitalOcean Spaces
This tutorial shows how to configure Django to load and serve up static and media files, public and private, via DigitalOcean Spaces.
View Article