Kushal Das: Johnnycanencrypt 0.13.0 released
I just now released v0.13.0 of my johnnycanencrypt project. It is a Python module written in Rust, which provides OpenPGP functionality including allows usage of Yubikey 4/5 as smartcards. From 0.12.0...
View ArticleJonathan Street: Updating FIDO U2F to WebAuthn
Back in 2018 I published a post on adding support for FIDO U2F second factor authentication to a flask application. At the time, FIDO U2F was a relatively new technology and, based in part on its...
View ArticleJohn Ludhi/nbshare.io: Calculate Stock Options Max Pain Using Data From Yahoo...
Calculate Stock Options Max Pain Using Data From Yahoo Finance With PythonMax Pain is a theory that suggests that the price of an option contract will tend to move towards a certain strike price, known...
View ArticleCodementor: How I learned Python (from scratch) 🐍
About me Please see my background section in my profile 🤓 Why I wanted to learn Python (from scratch) 🐍 I first became interested in learning Python when I was searching for a programming language...
View ArticleGlyph Lefkowitz: A Very Silly Program
One of the persistently lesser-known symptoms of ADHD is hyperfocus. It is sometimes quasi-accurately described as a “superpower”12, which it can be. In the right conditions, hyperfocus is the ability...
View Articledeath and gravity: reader 3.4 released – 5 years, 2000 commits
Hi there!I'm happy to announce version 3.4 of reader, a Python feed reader library.More importantly, reader is now 5 years old!5 years, 2000 commits#3.3, released in December, marks reader's 5th...
View ArticleMike Driscoll: PyDev of the Week: Fabio Pliger
This week we welcome Fabio Pliger (@b_smoke) as our PyDev of the Week! Fabio is the creator and tech lead of PyScript. You can see what else Fabio is working on over at GitHub.Let’s spend a few moments...
View ArticlePython for Beginners: Iterate Rows in a Pandas Dataframe
We use pandas dataframes to handle tabular data in python. In this article, we will discuss different ways to iterate rows in a pandas dataframe.Table of ContentsIterate a Pandas Dataframe Using iloc...
View ArticleReal Python: Linear Algebra in Python: Matrix Inverses and Least Squares
Linear algebra is an important topic across a variety of subjects. It allows you to solve problems related to vectors, matrices, and linear equations. In Python, most of the routines related to this...
View ArticlePython Morsels: Reading a CSV file in Python
You don't need third-party libraries to read CSV file in Python! Python's csv module includes helper functions for reading CSV files, tab-delimited files, and other delimited data files.Table of...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
View ArticleWill Kahn-Greene: Bleach 6.0.0 release and deprecation
What is it?Bleach is a Python library for sanitizing and linkifying text from untrusted sources for safe usage in HTML.Bleach v6.0.0 released!Bleach 6.0.0 cleans up some issues in linkify and with the...
View ArticleBrian Okken: Fixing Circular Imports in Python with Protocol
The problem started when I had two classes that needed to talk to each other. Sometimes, classes need to talk to each other in both directions. The following example is made up, but mostly behaves like...
View ArticleReal Python: Python Basics: Object-Oriented Programming
OOP, or object-oriented programming, is a method of structuring a program by bundling related properties and behaviors into individual objects. Conceptually, objects are like the components of a...
View ArticlePyCoder’s Weekly: Issue #561 (Jan. 24, 2023)
#561 – JANUARY 24, 2023View in Browser »How to Get and Use the Current Time in Python In this tutorial, you’ll be getting the current time in Python. You’ll get your hands on a datetime object that...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
View ArticlePython Bytes: #320 The Bug Is In The JavaScript
<a href='https://www.youtube.com/watch?v=uy04vHILEtY' style='font-weight: bold;'>Watch on YouTube</a><br> <br> <p><strong>About the show</strong></p>...
View ArticleCodementor: Mistakes which beginners make while choosing a Programming Language
Try avoiding this mistakes...
View ArticleTalk Python to Me: #400: Ruff - The Fast, Rust-based Python Linter
Our code quality tools (linters, test frameworks, and others) play an important role in keeping our code error free and conforming to the rules our teams have chosen. But when these tools become...
View ArticlePython for Beginners: Convert Epoch to Datetime in Python
Most of the software applications log date and time values as UNIX timestamps. While analyzing the logged data, we often need to convert the Unix timestamp to date and time values. In this article, we...
View Article