IslandT: Old code review on the earning project
Today is definitely a very hot and humid day as I sit in front of my house looking at the natural forest view of the backyard…red fungus I am just thinking that I will write this post tomorrow because...
View ArticleItsMyCode: TypeError: ‘str’ object does not support item assignment
In Python, strings are immutable, which means we cannot change certain characters or the text of a string using the assignment operator. If you try to change the string value, the Python interpreter...
View ArticleLinux Stans: How to Install Pip on Ubuntu
In this tutorial, we’re going to show you how to install and use Pip (Python) on Ubuntu. This tutorial works for Ubuntu 22.04, Ubuntu 20.04, any other Ubuntu release, and even distros like Linux Mint....
View ArticlePodcast.__init__: Tetra: A Full Stack Web Framework That Doesn't Make You...
Building a fully functional web application has been growing in complexity along with the growing popularity of javascript UI frameworks such as React, Vue, Angular, etc. Users have grown to expect...
View ArticleZato Blog: Integrating with WordPress and Elementor API webhooks
OverviewConsider this scenario:You have a WordPress instance, possibly installed in your own internal networkWith WordPress, you use Elementor, a popular website builderA user fills out a form that you...
View ArticlePaolo Melchiorre: The PyCon Italia 2022 multiplicity
More than two years after the latest edition, this year the PyCon Italia conference took place again in person, and at the 2022 edition I participated in multiple roles, all interesting and enriching...
View ArticleDjango Weblog: Django security releases issued: 4.0.6 and 3.2.14
In accordance with our security release policy, the Django team is issuing Django 4.0.6 and Django 3.2.14. These release addresses the security issue detailed below. We encourage all users of Django to...
View ArticleŁukasz Langa: Weekly Report, June 20 - 26
Probably the only highlight of the week was removing a long-standing issue with the CLA bot where if a GitHub account didn’t provide a public email, signing the CLA was impossible. Turns out this was a...
View ArticleŁukasz Langa: Weekly Report, June 27 - July 3
Those reports aren’t really looking like blog posts, they are mostly activity logs. This is because my writing focus these days is the EuroPython talk I’ll be giving on July 15th.
View ArticleEuroPython: Humans of EuroPython: Vicky Twomey-Lee 💖
Howya! My name is Vicky Twomey-Lee, and I’ve been involved with the Irish Python community since mid-2005 with Python Ireland initially and now I currently run PyLadies Dublin. I’ve organised and...
View ArticleMike Driscoll: PyDev of the Week: Stephen Gruppetta
This week we welcome Stephen Gruppetta (@s_gruppetta_ct) as our PyDev of the Week! Stephen is the author of the book / blog, The Python Coding Book. Stephen is also an author and contributor at Real...
View ArticlePython for Beginners: Convert String to List in Python
Strings and lists are the most used python objects. Sometimes, while manipulating strings, we need to convert a string to a list. In this article, we will discuss different ways to convert a string to...
View ArticleReal Python: Python 3.11 Preview: TOML and tomllib
Python 3.11 is getting closer to its final release, which will happen in October 2022. The new version is currently going through beta testing, and you can install it yourself to preview and test some...
View ArticleMatthew Wright: Using multiple kernels in Jupyter
If you've used a Jupyter notebook, you've used a kernel. A kernel is a process that executes code from a front-end process. Usually, if you are working in Python, the kernel you use is the IPython...
View ArticlePyCharm: Faster Django Queries With Materialized Views
Repeatedly running queries that span multiple tables can be burdensome on your database. In this blog post, we’re going to talk about materialized views, how and why they help us cut down on query...
View ArticleReal Python: Using the Python and Operator
Python has three Boolean operators, or logical operators: and, or, and not. You can use them to check if certain conditions are met before deciding the execution path your programs will follow. In this...
View ArticleMike Driscoll: An Intro to Python's difflib Module (Video)
Learn the basics of Python's difflib module in this newest tutorial by Mike DriscollWhat You'll LearnGetting Close MatchesUsing DifferGetting a Unified DiffGetting an HTML DiffThe post An Intro to...
View ArticleKushal Das: Using sigstore-python to sign and verify your software release
Sigstore allows software developers to quickly sign and verify the software they release. Many of the bigger projects use hardware-based OpenPGP keys to sign and release. But the steps used to make...
View ArticlePyCoder’s Weekly: Issue #532 (July 5, 2022)
#532 – JULY 5, 2022View in Browser »Exploring Functional Programming With Bruce Eckel Would you like to explore the functional programming side of Python? What are the advantages of this approach, and...
View ArticleIslandT: A python application which handles variety of tasks
Just like what I mentioned earlier I have started to write again on this website and the great thing is I have started to recreate the previous projects and here is another one. This project has been...
View Article