Real Python: The Real Python Podcast – Episode #220: Configuring Git...
How do you take advantage of Git pre-commit hooks? How do you build custom software checks and rules that run every time you commit your code? Christopher Trudeau is back on the show this week,...
View ArticlePython⇒Speed: When should you upgrade to Python 3.13?
Python 3.13 will be out October 1, 2024—but should you switch to it immediately? And if you shouldn’t upgrade just yet, when should you?Immediately after the release, you probably didn’t want to...
View ArticlePython⇒Speed: It's time to stop using Python 3.8
Upgrading to new software versions is work, and work that doesn’t benefit your software’s users. Users care about features and bug fixes, not how up-to-date you are.So it’s perhaps not surprising how...
View ArticleMatt Layman: Cloud Migration Beginning - Building SaaS #202
In this episode, we started down the path of migrating School Desk off of Heroku and onto Digital Ocean. Most of the effort was on tool changes and beginning to make a Dockerfile for deploying the app...
View ArticleNed Batchelder: Cogged GitHub profile
Cog is my tool for using bits of Python to generate content inside an otherwise static file. I used it in extreme ways to generate my GitHub profile page.If you haven’t seen it before, you can...
View ArticlePython Morsels: Boolean operators
Python's Boolean operators are used for combining Boolean expressions and negating Boolean expressions.Table of contentsCombining two if statements using andCombining expressions with Boolean...
View ArticleDjango Weblog: Nominate a Djangonaut for the 2024 Malcolm Tredinnick Memorial...
Hello Everyone 👋 It is that time of year again when we recognize someone from our community in memory of our friend Malcolm.Malcolm was an early core contributor to Django and had both a huge influence...
View ArticleZato Blog: Smart IoT integrations with Akenza and Python
Smart IoT integrations with Akenza and Python 2024-09-16, by Dariusz Suchojad OverviewThe Akenza IoT platform, on its own, excels in collecting and managing data from a myriad of IoT devices. However,...
View ArticlePython⇒Speed: Let's build and optimize a Rust extension for Python
If your Python code isn’t fast enough, you have many options for compiled languages to write a faster extension. In this article we’ll focus on Rust, which benefits from:Modern tooling, including a...
View ArticlePyCharm: 7 Ways To Use Jupyter Notebooks inside PyCharm
Jupyter notebooks allow you to tell stories by creating and sharing data, equations, and visualizations sequentially, with a supporting narrative as you go through the notebook.Jupyter notebooks in...
View ArticleTechBeamers Python: How to Create Dynamic QR Code in Python
This tutorial guides you on how to create dynamic QR codes in Python. It involves a bit more than just generating the QR code itself. Before reading this, you must know how a QR code generator works....
View ArticleReal Python: Using Python's pip to Manage Your Projects' Dependencies
The standard package manager for Python is pip. It allows you to install and manage packages that aren’t part of the Python standard library. If you’re looking for an introduction to pip, then you’ve...
View ArticlePyCharm: How to Use Jupyter Notebooks in PyCharm
PyCharm is one of the most well-known data science tools, offering excellent out-of-the-box support for Python, SQL, and other languages. PyCharm also provides integrations for Databricks, Hugging Face...
View ArticleTechBeamers Python: How to Create Dynamic QR Code in Python
This tutorial guides you on how to create dynamic QR codes in Python. It involves a bit more than just generating the QR code itself. Before reading this, you must know how a QR code generator works....
View ArticleTryton News: Security Release for issues #13505 and #13506
Albert Cervera has found that trytond allows to execute reports for records that user has no read access and also for reports limited to a set of group that the user is not.ImpactCVSS v3.0 Base Score:...
View ArticleReal Python: Customizing VS Code Through Color Themes
A well-designed coding environment not only enhances your focus and productivity but also makes coding sessions more enjoyable. In this Code Conversation, your instructor Philipp Acsany will guide you...
View ArticlePython Morsels: Understanding help() in Python
When using Python's help function, have you ever wondered what the various symbols (/, *, [, and ]) mean? Understanding those symbols will help you better understand how to use the functions and...
View ArticlePyCoder’s Weekly: Issue #647 (Sept. 17, 2024)
#647 – SEPTEMBER 17, 2024View in Browser »How to Use Conditional Expressions With NumPy where() This tutorial teaches you how to use the where() function to select elements from your NumPy arrays based...
View ArticlePython Bytes: #401 We must replace uWSGI with something else
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong>“<a href="https://github.com/overhangio/tutor/issues/937?featured_on=pythonbytes">We must...
View Article