Amjith Ramanujam: Examples are Awesome
There are two things I look for whenever I check out an Opensource project or library that I want to use. 1. Screenshots (A picture is worth a thousand words). 2. Examples (Don't tell me what to do,...
View ArticlePython Bytes: #301 PyTorch Grows Up and Moves Out
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=oCLokYIIT0U' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticlePyBites: From Basketball Athlete to DevRel, Dropping the Fear of Failure
Listen here:This week we have Tonya Sims on the show to talk about her journey from athlete / basketball player to Python Developer Advocate / DevRel and entrepreneur.We talk about how she combines...
View ArticlePyCharm: PyCharm 2022.2.2 Is Out!
We’ve just released the second bug-fix update for PyCharm 2022.2.You can update to this version from inside the IDE, by using the Toolbox App, or by using snaps if you are a Ubuntu user. You can also...
View Articledeath and gravity: reader 3.0 released
Hi there!I'm happy to announce version 3.0 of reader, a Python feed reader library.This release removes a number of deprecated methods and attributes, for a cleaner, more consistent API. See the...
View Article"Paolo Amoroso's Journal": Impractical Python Projects and Real-World Python
If you lived through the personal computer revolution of the 1980s, you may have read some books that got you hooked with programming. These works led the reader through the intellectual adventure of...
View ArticleReal Python: The Real Python Podcast – Episode #125: Improve Matplotlib With...
Have you thought the standard output from Matplotlib is a bit generic looking? Would you like a quick way to add style and consistency to your data visualizations? This week on the show, Christopher...
View ArticlePython for Beginners: Rename Specific Columns in Dataframe
Pandas Dataframes are used to handle tabular data in python. In this article, we will discuss how we can rename specific columns in a dataframe in python.Rename Specific Columns in a Dataframe by...
View ArticleTalk Python to Me: #381: Python Perf: Specializing, Adaptive Interpreter
We are on the edge of a major jump in Python performance. With the work done by the Faster CPython team and Python 3.11 due out in around a month, your existing Python code might see an increase of...
View ArticleIslandT: Python Tutorial — Chapter 5
In this chapter let us all look at the Python Arithmetic Operators and understand how to use them all. Python arithmetic operators basically operate in the same manner as the other programming lnaguage...
View ArticleZato Blog: Using OAuth in API Integrations
OAuth is often employed in processes requiring permissions to be granted to frontend applications and end users. Yet, what we typically need in API systems integrations is a way to secure connections...
View ArticleThe Digital Cat: First-class objects in Python - Higher-order functions,...
My new book "First-class objects in Python" is out! Grab your FREE copy here!
View ArticlePodcast.__init__: Catching Up With Pyre, A Fast Type Checker For Python
Static typing versus dynamic typing is one of the oldest debates in software development. In recent years a number of dynamic languages have worked toward a middle ground by adding support for type...
View ArticleNed Batchelder: Making a coverage badge
This is a sketch of how to use GitHub actions to get a total combined coverage number, and create a badge for your README. There are other approaches too, but this uses some commonly used tools to get...
View ArticlePython for Beginners: Read Specific Columns From CSV File
CSV files are the most popular way to store tabular data in the file system. Sometimes the csv file can contain multiple columns that we don’t need for analysis. In this article, we will discuss how we...
View ArticleMike Driscoll: Python 103 - Practical Python Course Now Available
I just launched my third course on Teach Me Python. This course is called Python 103 - Practical PythonIn this new course, you will learn about the following:Part I - Python Use CasesLesson 1 - How to...
View ArticleReal Python: When Do You Use an Ellipsis in Python?
In English writing, you can use the ellipsis to indicate that you’re leaving something out. Essentially, you use three dots (...) to replace the content. But the ellipsis doesn’t only exist in...
View ArticlePython Morsels: Avoid "reduce" in Python
Python's reduce function can "reduce" an iterable to a single value. But the reduce function is often more hassle than it's worth.Table of contentsWhat is the functools.reduce function?Performing...
View ArticleHynek Schlawack: How I’m a Productive Programmer With a Memory of a Fruit Fly
A love letter to tools that changed everything for me.
View ArticleAndre Roberge: New milestone: friendly/friendly-traceback version 0.6 (and...
Just a few minutes ago, @isidentical tweeted that PyPy 3.9 had implemented the new enhanced tracebacks that are going to be part of cPython 3.11. Of course, I had to reply to show that...
View Article