death and gravity: yaml: could not determine a constructor for the tag
Link: https://death.andgravity.com/yaml-unknown-tag
So you're trying to read some YAML using PyYAML,
and get an exception like this:
>>> yaml.safe_load("!!python/tuple [0,0]")
Traceback (most recent call last):
...
yaml.constructor.ConstructorError:
Link: https://death.andgravity.com/yaml-unknown-tag
So you're trying to read some YAML using PyYAML,
and get an exception like this:
>>> yaml.safe_load("!!python/tuple [0,0]")
Traceback (most recent call last):
...
yaml.constructor.ConstructorError:
death and gravity
yaml: could not determine a constructor for the tag
... in which you'll find out what "could not determine a constructor for the tag" PyYAML errors mean, why do they happen, and what you can do about it.
Daniel Roy Greenfeld: Sendowl Consolidation Script
Link: https://daniel.feldroy.com/posts/2022-02-sendowl-consolidation-script
As self-published authors, Audrey and I use the awesome sendowl service to distribute our digital files. We had multiple storefronts accounts for different countries but now we only need one. This is
Link: https://daniel.feldroy.com/posts/2022-02-sendowl-consolidation-script
As self-published authors, Audrey and I use the awesome sendowl service to distribute our digital files. We had multiple storefronts accounts for different countries but now we only need one. This is
Daniel Roy Greenfeld
Sendowl Consolidation Script
Unifying our sendowl accounts into one
Python for Beginners: Number of Lines in a File in Python
Link: https://www.pythonforbeginners.com/basics/number-of-lines-in-a-file-in-python
File handling is one of the most critical operations in programming. Sometimes, we may need to count the number of lines in a file to perform any operation on it. In this article, we will see how we c
Link: https://www.pythonforbeginners.com/basics/number-of-lines-in-a-file-in-python
File handling is one of the most critical operations in programming. Sometimes, we may need to count the number of lines in a file to perform any operation on it. In this article, we will see how we c
PythonForBeginners.com
Number of Lines in a File in Python - PythonForBeginners.com
Number of Lines in a File in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Python's assert: Debug and Test Your Code Like a Pro
Link: https://realpython.com/python-assert-statement/
Python’s assert statement allows you to write sanity checks in your code. These checks are known as assertions, and you can use them to test if certain assumptions remain true while you’re developing
Link: https://realpython.com/python-assert-statement/
Python’s assert statement allows you to write sanity checks in your code. These checks are known as assertions, and you can use them to test if certain assumptions remain true while you’re developing
Realpython
Python's assert: Debug and Test Your Code Like a Pro – Real Python
In this tutorial, you'll learn how to use Python's assert statement to document, debug, and test code in development. You'll learn how assertions might be disabled in production code, so you shouldn't use them to validate data. You'll also learn about a few…
Anwesha Das: Enabling IPv6 in the virtual machines on the Fedora 35
Link: http://anweshadas.in/enabling-ipv6-in-the-virtual-machines-on-the-fedora-35/
On Fedora when we create a Virtual Machine (via libvirt) we get an IPv4 address (NAT). But for my experiment I wanted a NATed IPv6 address. With the following steps one can get NATed IPV6 address on
Link: http://anweshadas.in/enabling-ipv6-in-the-virtual-machines-on-the-fedora-35/
On Fedora when we create a Virtual Machine (via libvirt) we get an IPv4 address (NAT). But for my experiment I wanted a NATed IPv6 address. With the following steps one can get NATed IPV6 address on
Law Explained India
Enabling IPv6 in the virtual machines on the Fedora 35
On Fedora when we create a Virtual Machine (via libvirt) we get an IPv4 address (NAT). But for my experiment I wanted a NATed IPv6 address. With the following steps one can get NATed IPV6 address on VMs. On the host First, stop the default network and edit…
Python for Beginners: Select Random Element from A List in Python
Link: https://www.pythonforbeginners.com/basics/select-random-element-from-a-list-in-python
While programming in python, we may need to select a random element from a list in several situations. In this article, we will discuss different ways to select an element from a list in python.
Selec
Link: https://www.pythonforbeginners.com/basics/select-random-element-from-a-list-in-python
While programming in python, we may need to select a random element from a list in several situations. In this article, we will discuss different ways to select an element from a list in python.
Selec
PythonForBeginners.com
Select Random Element from A List in Python - PythonForBeginners.com
Select Random Element from A List in Python will help you improve your python skills with easy to follow examples and tutorials.
Python Bytes: #272 The tools episode
Link: https://pythonbytes.fm/episodes/show/272/the-tools-episode
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=8HKliSbA-gQ' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/272/the-tools-episode
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=8HKliSbA-gQ' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
The tools episode
News and announcements from the Python community for the week of Feb 24th, 2022
Talk Python to Me: #354: Sphinx, MyST, and Python Docs in 2022
Link: https://talkpython.fm/episodes/show/354/sphinx-myst-and-python-docs-in-2022
When you think about the power of Python, the clean language or powerful standard library may come to mind. You might certainly point to the external packages too. But what about the relative ease of
Link: https://talkpython.fm/episodes/show/354/sphinx-myst-and-python-docs-in-2022
When you think about the power of Python, the clean language or powerful standard library may come to mind. You might certainly point to the external packages too. But what about the relative ease of
talkpython.fm
Sphinx, MyST, and Python Docs in 2022
When you think about the power of Python, the clean language or powerful standard library may come to mind. You might certainly point to the external packages too. But what about the relative ease of picking up new libraries or even parts of the standard…
John Cook: Find log normal parameters for given mean and variance
Link: https://www.johndcook.com/blog/2022/02/24/find-log-normal-parameters/
Earlier today I needed to solve for log normal parameters that yield a given mean and variance. I’m going to save the calculation here in case I needed in the future or in case a reader needs it. The
Link: https://www.johndcook.com/blog/2022/02/24/find-log-normal-parameters/
Earlier today I needed to solve for log normal parameters that yield a given mean and variance. I’m going to save the calculation here in case I needed in the future or in case a reader needs it. The
John D. Cook | Applied Mathematics Consulting
Find log normal parameters for given mean and variance
Starting with a desired mean and variance, find parameters for a log normal probability distribution with that mean and variance.
Glyph Lefkowitz: A Better Pygame Mainloop
Link: https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
This post recommends calling pygame.display.flip from a thread, which I
tested extensively on mac, windows, and linux before posting, but after some
feedback from readers, I realize that this strategy
Link: https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
This post recommends calling pygame.display.flip from a thread, which I
tested extensively on mac, windows, and linux before posting, but after some
feedback from readers, I realize that this strategy
Twistedmatrix
A Better Pygame Mainloop
Fix your mainloop for smoother gameplay that takes less battery power.
Glyph Lefkowitz: Legitimizing Blockchain
Link: https://glyph.twistedmatrix.com/2022/02/legitimizing-blockchain.html
Yesterday, 1Password made the following announcement:
Cryptocurrency? We got you. 💸We’ve partnered with @phantom to create a simpler, more secure way to manage cryptocurrencies, tokens and NFTs on the
Link: https://glyph.twistedmatrix.com/2022/02/legitimizing-blockchain.html
Yesterday, 1Password made the following announcement:
Cryptocurrency? We got you. 💸We’ve partnered with @phantom to create a simpler, more secure way to manage cryptocurrencies, tokens and NFTs on the
Twistedmatrix
Legitimizing Blockchain
Why is advertising blockchain something we should try to stop, rather than ignore?
Programiz: Python List
Link: https://www.programiz.com/python-programming/list
In this tutorial, we'll learn everything about Python lists: creating lists, changing list elements, removing elements, and other list operations with the help of examples.
Link: https://www.programiz.com/python-programming/list
In this tutorial, we'll learn everything about Python lists: creating lists, changing list elements, removing elements, 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.
Daniel Roy Greenfeld: Blogger to Markdown Script
Link: https://daniel.feldroy.com/posts/2022-02-blogger-to-markdown-script
I started writing blog posts on Blogger in 2007. I did so on multiple accounts. On one blog I wrote about software programming, on another I wrote about fiction, and on yet another I wrote about perso
Link: https://daniel.feldroy.com/posts/2022-02-blogger-to-markdown-script
I started writing blog posts on Blogger in 2007. I did so on multiple accounts. On one blog I wrote about software programming, on another I wrote about fiction, and on yet another I wrote about perso
Daniel Roy Greenfeld
Blogger to Markdown Script
Converting hundreds of posts from blogger to markdown
Real Python: The Real Python Podcast – Episode #99: OAuth 2 and Authentication Choices for Your Python Project
Link: https://realpython.com/podcasts/rpp/99/
Have you thought about what authentication system you want to use for your Python project? Should you use an existing Python library or a third-party service? This week on the show, Dan Moore is here
Link: https://realpython.com/podcasts/rpp/99/
Have you thought about what authentication system you want to use for your Python project? Should you use an existing Python library or a third-party service? This week on the show, Dan Moore is here
Realpython
Episode #99: OAuth 2 and Authentication Choices for Your Python Project – The Real Python Podcast
Have you thought about what authentication system you want to use for your Python project? Should you use an existing Python library or a third-party service? This week on the show, Dan Moore is here to talk about authentication systems and OAuth 2.
TestDriven.io: Django vs. Flask in 2022: Which Framework to Choose
Link: https://testdriven.io/blog/django-vs-flask/
In this article, we'll look at the best use cases for Django and Flask along with what makes them unique, from an educational and development standpoint.
Link: https://testdriven.io/blog/django-vs-flask/
In this article, we'll look at the best use cases for Django and Flask along with what makes them unique, from an educational and development standpoint.
testdriven.io
Django vs. Flask in 2024: Which Framework to Choose
In this article, we'll look at the best use cases for Django and Flask along with what makes them unique, from an educational and development standpoint.
Thomas Guest: Priority queues in Python
Link: https://wordaligned.org/articles/priority-queues-in-python
In the previous article I noted that Python’s
heapq module is the
only part of standard Python I could think of which deals with sorting,
but which doesn’t give you full control over the sort order.
T
Link: https://wordaligned.org/articles/priority-queues-in-python
In the previous article I noted that Python’s
heapq module is the
only part of standard Python I could think of which deals with sorting,
but which doesn’t give you full control over the sort order.
T
wordaligned.org
Priority queues in Python
A Word Aligned article posted 2022-02-25, tagged Python.
PyCon: PyCon US 2022 Schedule Launch
Link: https://pycon.blogspot.com/2022/02/pycon-us-2022-schedule-launch.html
We are thrilled to announce that the schedule for PyCon US 2022 has been published! Here you will find Tutorials, Talk Tracks, Charlas Track, and Sponsor Workshops. This year, posters will be displaye
Link: https://pycon.blogspot.com/2022/02/pycon-us-2022-schedule-launch.html
We are thrilled to announce that the schedule for PyCon US 2022 has been published! Here you will find Tutorials, Talk Tracks, Charlas Track, and Sponsor Workshops. This year, posters will be displaye
Blogspot
PyCon US 2022 Schedule Launch
We are thrilled to announce that the schedule for PyCon US 2022 has been published! Here you will find Tutorials, Talk Tracks, Charlas Tra...
Podcast.__init__: See The Structure Of Your Software At A Glance With Call Graphs From Code2Flow
Link: https://www.pythonpodcast.com/code2flow-call-graph-episode-354/
As software projects grow and change it can become difficult to keep track of all of the logical flows. By visualizing the interconnections of function definitions, classes, and their invocations you
Link: https://www.pythonpodcast.com/code2flow-call-graph-episode-354/
As software projects grow and change it can become difficult to keep track of all of the logical flows. By visualizing the interconnections of function definitions, classes, and their invocations you
The Python Podcast.__init__
The Python Podcast.__init__: See The Structure Of Your Software At A Glance With Call Graphs From Code2Flow
An interview with Scott Rogowski about his work on the Code2Flow package that lets you quickly view the structure of your code with "pretty good" call graphs that support Python, Ruby, and PHP.
Mike Driscoll: PyDev of the Week: Henry Schreiner III
Link: https://www.blog.pythonlibrary.org/2022/02/28/pydev-of-the-week-henry-schreiner-iii/
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects related to scikit, PyPA, and more. You can ge
Link: https://www.blog.pythonlibrary.org/2022/02/28/pydev-of-the-week-henry-schreiner-iii/
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects related to scikit, PyPA, and more. You can ge
Mouse Vs Python
PyDev of the Week: Henry Schreiner III - Mouse Vs Python
This week we welcome Henry Schreiner (@HenrySchreiner3) as our PyDev of the Week! Henry is an open-source maintainer/core contributor to multiple projects
Malthe Borch: Container Registry on a Budget using AWS S3
Link: https://maltheborch.com/2022/02/container-registry-on-a-budget-using-aws-s3.html
Inspired by Mike Cartmell's
Budget Kubernetes Hosting for Personal Use blog series, I wanted to set up my own Kubernetes cluster on DigitalOcean on a budget, mostl
Link: https://maltheborch.com/2022/02/container-registry-on-a-budget-using-aws-s3.html
Inspired by Mike Cartmell's
Budget Kubernetes Hosting for Personal Use blog series, I wanted to set up my own Kubernetes cluster on DigitalOcean on a budget, mostl
Malthe's Homepage:
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Software Engineering and Architecture, Data Processing and Analytics
A Blog About Computer Systems
Container Registry on a Budget using AWS S3