Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCon: Applications Are Open for Booth Space on Startup Row

Link: https://pycon.blogspot.com/2023/02/startup-row-applications-open-2023.html

2023 is a big year for PyCon US. It’s kind of hard to believe that we’ll be celebrating 20 years of code and community. And for well over half that time, PyCon US has supported early-stage entrepreneu
PyCon: Response to Utah's Transgender Healthcare Ban

Link: https://pycon.blogspot.com/2023/02/response-to-utahs-transgender.html

We’re saddened that the state of Utah has chosen to ban healthcare for transgender people. We can’t even imagine how trans Pythonistas and their families in Utah are feeling today. We also recognize t
Eli Bendersky: Understanding how to implement a character-based RNN language model

Link: https://eli.thegreenplace.net/2018/understanding-how-to-implement-a-character-based-rnn-language-model/

In a single gist,
Andrej Karpathy did something
truly impressive. In a little over 100 lines of Python - without relying on any
heavy-weight machine learning frameworks - he presents a fairly complete
Eli Bendersky: Elegant Python code for a Markov chain text generator

Link: https://eli.thegreenplace.net/2018/elegant-python-code-for-a-markov-chain-text-generator/

While preparing the post on minimal char-based RNNs,
I coded a simple Markov chain text generator to serve as a comparison for the
quality of the RNN model. That code turned out to be concise and quit
Eli Bendersky: Covariance and contravariance in subtyping

Link: https://eli.thegreenplace.net/2018/covariance-and-contravariance-in-subtyping/

Many programming languages support subtyping, a kind of polymorphism that lets
us define hierarchical relations on types, with specific types being subtypes of
more generic types. For example, a Cat c
Eli Bendersky: Type inference

Link: https://eli.thegreenplace.net/2018/type-inference/

Type inference is a major feature of several programming languages, most notably
languages from the ML family like Haskell. In this post I want to provide a
brief overview of type inference, along wit
Eli Bendersky: Type erasure and reification

Link: https://eli.thegreenplace.net/2018/type-erasure-and-reification/

In this post I'd like to discuss the concepts of type erasure and
reification in programming languages. I don't intend to dive very deeply into
the specific rules of any particular language; rather, t
Wyatt Baldwin: Seamless Full Stack Django+React Framework

Link: https://wyattbaldwin.com/2023/02/04/seamless-full-stack-django-plus-react/

I spent a couple months last fall1 building a full stack Django+React “meta framework” that attempts to seamlessly integrate Django and React with minimal developer effort. All the decisions about how
John Ludhi/nbshare.io: Text to Table CSV DataTable

Link: https://www.nbshare.io/notebook/155060683/Text-to-Table-CSV-DataTable/



Text to Table CSV DataTable



Paste Table Text




Download Datatable








Help


Text to Table CSV DataTable is a software tool that allows users to easily convert text to a table in a CSV file
Kushal Das: Using YubiKeys for your linux system

Link: https://kushaldas.in/posts/using-yubikeys-for-your-linux-system.html


You can use your Yubikey 4 or 5 for the rest of the tutorial.
Why?
If you mark your Yubikey presence is required to unlock your computer, then one
not only needs your password, they will have to gain
John Ludhi/nbshare.io: Text to CSV Data Table

Link: https://www.nbshare.io/notebook/155060683/Text-to-CSV-Data-Table/



Text to CSV Data Table



Paste Table Text




Download Datatable








Help


Text to Table CSV DataTable is a online tool that allows users to easily convert text to a table in a CSV file format
Kay Hayen: Nuitka Release 1.4

Link: https://nuitka.net/posts/nuitka-release-14.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release contains a large amount of performance work, where
specifical
CodersLegacy: Generating Dynamic Content (widgets) in Tkinter

Link: https://coderslegacy.com/dynamic-content-widgets-in-tkinter/

In this Tkinter tutorial, we will explore how to generate Dynamic Content (widgets) in Tkinter. Most Tkinter applications are “static”. This means that when a Tkinter window is generated, the widgets
Glenn Franxman: Building a medallion style delta lake with Databricks

Link: http://hackermojo.com/mt-static/archives/2023/02/databricks-medallion-deltalake.html

You can build a medallion style delta lake with Databricks can be accomplished by following a few simple steps:

1. Create a new Databricks workspace and launch a new cluster.
2. Create a new Delta la
Mike Driscoll: PyDev of the Week: Thomas Passin

Link: https://www.blog.pythonlibrary.org/2023/02/06/pydev-of-the-week-thomas-passin/

This week we welcome Thomas Passin as our PyDev of the Week! Thomas is the mastermind behind the GF4 Graphics Calculator application. Thomas also helps out with the Leo Editor.
Let’s take a few moment
Real Python: Build a Wordle Clone With Python and Rich

Link: https://realpython.com/python-wordle-clone/

In this tutorial, you’ll build your own Wordle clone for the terminal. Since Josh Wardle launched Wordle in October 2021, millions of people have played it. While you can play the original game on the
Python Morsels: Conditional operators in Python

Link: https://www.pythonmorsels.com/conditional-operators/

Python's conditional operators return Boolean values (True and False).



Table of contents

What are Booleans?
Where are Boolean expressions used?
Examples of comparison operations
Conditional operat
The Python Coding Blog: Understanding The Difference Between `is` and `==` in Python: The £5 Note and a Trip to a Coffee Shop

Link: https://thepythoncodingbook.com/2023/02/07/understanding-the-difference-between-is-and-in-python/

The keyword is and the operator == are not the same. Yet, many programmers often use one when they should use the other. Let’s look at the difference between is and == in Python with the help of a £5