Ed Crewe: Software Development with Generative AI - 2024 Update
Why write an update?I wrote a blog post on Software Development with Generative AI last year, which was questioning the approach of the current AI software authoring assistants. I believe the bigger...
View ArticlePythonicity: GraphQL cursors
Contrarian view on cursor-based pagination.GraphQL documentation recommends cursor-based pagination, and it has subsequently become a popular standard.In general, we’ve found that cursor-based...
View ArticleZato Blog: HL7 FHIR Integrations in Python
HL7 FHIR Integrations in Python 2024-06-10, by Dariusz Suchojad HL7 FHIR, pronounced "fire", is a data model and message transfer protocol designed to facilitate the exchange of information among...
View ArticleTryton News: Security Release for issue #92
Ashish Kunwar has found that python-sqlaccepts any string in the offset or limit parameters when python is ran with -O which makes any system exposing those vulnerable to an SQL injection...
View ArticleRobin Wilson: Introducing offline_folium
Another new-ish package that I’ve never got around to writing about on my blog is offline_folium. It has a somewhat niche use-case, but it seems like a few people have found it useful.In brief, it...
View ArticleListenData: How to Integrate Gemini API with Python
In this tutorial, you will learn how to use Google's Gemini AI model through its API in Python.Steps to Access Gemini APIFollow the steps below to access the Gemini API and then use it in python.Visit...
View ArticlePython Software Foundation: It’s time to make nominations for the PSF Board...
This year’s Board Election Nomination period opens tomorrow and closes on June 25th. Who runs for the board? People who care about the Python community, who want to see it flourish and grow, and also...
View ArticleReal Python: Python News: What's New From May 2024
May was packed with exciting updates and events in the Python community. This month saw the release of the first beta version of Python 3.13, the conclusion of PyCon US 2024, and the announcement of...
View ArticleReal Python: Listing All Files in a Directory With Python
Getting a list of all the files and folders in a directory is a natural first step for many file-related operations in Python. When looking into it, though, you may be surprised to find various ways to...
View ArticlePython Bytes: #387 Heralding in a new era of database queries
<strong>Topics covered in this episode:</strong><br> <ul> <li><a href="https://github.com/Dataherald/dataherald">Dataherald</a></li> <li><a...
View ArticlePyCoder’s Weekly: Issue #633 (June 11, 2024)
#633 – JUNE 11, 2024View in Browser »String Interpolation in Python: Exploring Available Tools In this tutorial, you’ll learn about the different tools that Python provides for performing string...
View ArticleBrett Cannon: Saying thanks to open source maintainers
After signing up for GitHub Sponsors, I had a nagging feeling that somehow asking for money from other people to support my open source work was inappropriate. But after much reflection, I realized...
View ArticleKay Hayen: Nuitka Release 2.3
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler, “download now”.This release bumps the long-awaited 3.12 support to a complete level. Now,...
View ArticleReal Python: Quiz: Python Mappings
In this quiz, you’ll test your understanding of the basic characteristics and operations of Python mappings. By working through this quiz, you’ll revisit the key concepts and techniques of creating a...
View ArticleListenData: Complete Guide to Massively Multilingual Speech (MMS) Model
In this article we have covered everything about the latest multilingual speech model from the basics of how it works to the step-by-step implementation of the model in Python.Introduction of Massively...
View ArticleReal Python: Python Mappings: A Comprehensive Guide
One of the main data structures you learn about early in your Python learning journey is the dictionary. Dictionaries are the most common and well-known of Python’s mappings. However, there are other...
View ArticleThe Python Show: 44 - Django with Will Vincent
In this episode, we welcome Will Vincent to the Python Show Podcast. Will has written several books on Django.We chatted about all things Django and Python. Specifically, we covered the following...
View ArticleSeth Michael Larson: PyCon US 2024 as Security Developer-in-Residence
PyCon US 2024 as Security Developer-in-Residence About• Blog• Newsletter• LinksPyCon US 2024 as Security Developer-in-ResidencePublished 2024-06-13 by Seth Larson Reading time: minutes This critical...
View ArticlePython Morsels: Data structures contain pointers
Data structures, like variables, contain references to objects, rather than the objects themselves.Table of contentsReferencing the same object in multiple placesData structures store references, not...
View ArticlePython Software Foundation: For your consideration: Proposed bylaws changes...
This year, as part of our annual election process, the Python Software Foundation Board is offering three bylaws changes for our Members to vote on. These changes are all centered on our membership...
View Article