Jonathan Street: Updating FIDO U2F to WebAuthn
Link: http://jonathanstreet.com/blog/update-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 deve
Link: http://jonathanstreet.com/blog/update-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 deve
John Ludhi/nbshare.io: Calculate Stock Options Max Pain Using Data From Yahoo Finance With Python
Link: https://www.nbshare.io/notebook/318554522/Calculate-Stock-Options-Max-Pain-Using-Data-From-Yahoo-Finance-With-Python/
Calculate Stock Options Max Pain Using Data From Yahoo Finance With Python
Max Pain is a theory that suggests that the price of an option contract will tend to move towards a certain s
Link: https://www.nbshare.io/notebook/318554522/Calculate-Stock-Options-Max-Pain-Using-Data-From-Yahoo-Finance-With-Python/
Calculate Stock Options Max Pain Using Data From Yahoo Finance With Python
Max Pain is a theory that suggests that the price of an option contract will tend to move towards a certain s
Codementor: How I learned Python (from scratch) 🐍
Link: https://www.codementor.io/niklasfuerderer/how-i-learned-python-from-scratch-219p31iw6d
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...
Link: https://www.codementor.io/niklasfuerderer/how-i-learned-python-from-scratch-219p31iw6d
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...
www.codementor.io
How I learned Python (from scratch) 🐍 | Codementor
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...
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...
death and gravity: reader 3.4 released – 5 years, 2000 commits
Link: https://death.andgravity.com/reader-3-4
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
Link: https://death.andgravity.com/reader-3-4
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
death and gravity
reader 3.4 released – 5 years, 2000 commits
reader, my Python feed reader library, is 5 years old; since this is a special occasion, I thought I'd share a few thoughts on the journey so far.
Glyph Lefkowitz: A Very Silly Program
Link: https://blog.glyph.im/2023/01/a-very-silly-program.html
One of the persistently lesser-known symptoms of ADHD is
hyperfocus. It is
sometimes quasi-accurately described as a “superpower”1 2, which it can
be. In the right conditions, hyperfocus is the abili
Link: https://blog.glyph.im/2023/01/a-very-silly-program.html
One of the persistently lesser-known symptoms of ADHD is
hyperfocus. It is
sometimes quasi-accurately described as a “superpower”1 2, which it can
be. In the right conditions, hyperfocus is the abili
blog.glyph.im
A Very Silly Program
This program will not work on your computer.
Mike Driscoll: PyDev of the Week: Fabio Pliger
Link: https://www.blog.pythonlibrary.org/2023/01/23/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 momen
Link: https://www.blog.pythonlibrary.org/2023/01/23/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 momen
Mouse Vs Python
PyDev of the Week: Fabio Pliger - Mouse Vs Python
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
Python for Beginners: Iterate Rows in a Pandas Dataframe
Link: https://www.pythonforbeginners.com/basics/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
Link: https://www.pythonforbeginners.com/basics/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
PythonForBeginners.com
Iterate Rows in a Pandas Dataframe - PythonForBeginners.com
Iterate Rows in a Pandas Dataframe will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Linear Algebra in Python: Matrix Inverses and Least Squares
Link: https://realpython.com/python-linear-algebra/
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 s
Link: https://realpython.com/python-linear-algebra/
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 s
Realpython
Linear Algebra in Python: Matrix Inverses and Least Squares – Real Python
In this tutorial, you'll work with linear algebra in Python. You'll learn how to perform computations on matrices and vectors, how to study linear systems and solve them using matrix inverses, and how to perform linear regression to predict prices based on…
Python Morsels: Reading a CSV file in Python
Link: https://www.pythonmorsels.com/csv-reading/
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 c
Link: https://www.pythonmorsels.com/csv-reading/
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 c
Pythonmorsels
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.
Will Kahn-Greene: Bleach 6.0.0 release and deprecation
Link: https://bluesock.org/~willkg/blog/dev/bleach_6_0_0_deprecation.html
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
Link: https://bluesock.org/~willkg/blog/dev/bleach_6_0_0_deprecation.html
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
Will's Blog
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 wit
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 wit
Real Python: Python Basics: Object-Oriented Programming
Link: https://realpython.com/courses/python-basics-oop/
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 syst
Link: https://realpython.com/courses/python-basics-oop/
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 syst
Realpython
Python Basics: Object-Oriented Programming – Real Python
In this video course, you'll get to know OOP, or object-oriented programming. You'll learn how to create a class, use classes to create new objects, and instantiate classes with attributes.
Brian Okken: Fixing Circular Imports in Python with Protocol
Link: https://pythontest.com/fix-circular-import-python-typing-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 lik
Link: https://pythontest.com/fix-circular-import-python-typing-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 lik
PythonTest
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 the original problem.
Let’s say I have a Director and…
The following example is made up, but mostly behaves like the original problem.
Let’s say I have a Director and…
PyCoder’s Weekly: Issue #561 (Jan. 24, 2023)
Link: https://pycoders.com/issues/561
#561 – JANUARY 24, 2023 View 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
Link: https://pycoders.com/issues/561
#561 – JANUARY 24, 2023 View 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
Pycoders
PyCoder’s Weekly | Issue #561
Issue #561 of the PyCoder’s Weekly newsletter, published Jan. 24, 2023.
Python Bytes: #320 The Bug Is In The JavaScript
Link: https://pythonbytes.fm/episodes/show/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>
<p>Sponsored by us! Support our work through:</p
Link: https://pythonbytes.fm/episodes/show/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>
<p>Sponsored by us! Support our work through:</p
pythonbytes.fm
The Bug Is In The JavaScript
News and announcements from the Python community for the week of Jan 24th, 2023
Codementor: Mistakes which beginners make while choosing a Programming Language
Link: https://www.codementor.io/nimeshneema/mistakes-which-beginners-make-while-choosing-a-programming-language-21ct767o8w
Try avoiding this mistakes...
Link: https://www.codementor.io/nimeshneema/mistakes-which-beginners-make-while-choosing-a-programming-language-21ct767o8w
Try avoiding this mistakes...
www.codementor.io
Mistakes which beginners make while choosing a Programming Language | Codementor
Try avoiding this mistakes...
Python for Beginners: Convert Epoch to Datetime in Python
Link: https://www.pythonforbeginners.com/basics/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
Link: https://www.pythonforbeginners.com/basics/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
PythonForBeginners.com
Convert Epoch to Datetime in Python - PythonForBeginners.com
Convert Epoch to Datetime in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: The Python Standard REPL: Try Out Code and Ideas Quickly
Link: https://realpython.com/python-repl/
The Python standard shell, or REPL (Read-Eval-Print Loop), allows you to run Python code interactively while working on a project or learning the language. This tool is available in every Python insta
Link: https://realpython.com/python-repl/
The Python standard shell, or REPL (Read-Eval-Print Loop), allows you to run Python code interactively while working on a project or learning the language. This tool is available in every Python insta
Realpython
The Python Standard REPL: Try Out Code and Ideas Quickly – Real Python
In this tutorial, you'll learn how to use the Python standard REPL (Read-Eval-Print Loop) to run your code interactively. This tool will allow you to test new ideas, explore and experiment with new tools and libraries, refactor and debug your code, try out…
PyCharm: Chatting With the Reloadium Team About Hot Reload And Future Webinar
Link: https://blog.jetbrains.com/pycharm/2023/01/interview-with-reloadium/
PyCharm is working hard on Python developer experience (DX). There’s a project with a very promising DX boost using “hot reloading”: Reloadium. It really speeds up turnaround time on working with your
Link: https://blog.jetbrains.com/pycharm/2023/01/interview-with-reloadium/
PyCharm is working hard on Python developer experience (DX). There’s a project with a very promising DX boost using “hot reloading”: Reloadium. It really speeds up turnaround time on working with your
The JetBrains Blog
Chatting With the Reloadium Team About Hot Reload And Future Webinar | The PyCharm Blog
PyCharm is working hard on Python developer experience (DX). There’s a project with a very promising DX boost using “hot reloading”: Reloadium. It really speeds up turnaround time on working with your
Programiz: Python List
Link: https://www.programiz.com/python-programming/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.
Link: https://www.programiz.com/python-programming/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.
Programiz
Python List (With Examples)
Python lists store multiple data together in a single variable. 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.
Talk Python to Me: #400: Ruff - The Fast, Rust-based Python Linter
Link: https://talkpython.fm/episodes/show/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 slugg
Link: https://talkpython.fm/episodes/show/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 slugg
talkpython.fm
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 sluggish and slow down development, we often avoid running them…