PyCoder’s Weekly: Issue #497 (Nov. 2, 2021)
Link: https://pycoders.com/issues/497
#497 – NOVEMBER 2, 2021 View in Browser » A Viable Solution for Python Concurrency “The end result thus appears to be a GIL-removal effort that has a rather better-than-average chance of making
Link: https://pycoders.com/issues/497
#497 – NOVEMBER 2, 2021 View in Browser » A Viable Solution for Python Concurrency “The end result thus appears to be a GIL-removal effort that has a rather better-than-average chance of making
Pycoders
PyCoder’s Weekly | Issue #497
Issue #497 of the PyCoder’s Weekly newsletter, published Nov. 2, 2021.
Łukasz Langa: Weekly Report, October 25 - 31
Link: https://lukasz.langa.pl/7613882f-364f-49ac-8d8c-d12a940384bb/
This week I spent most time mentoring as well as reviewing PRs. No highlights this time as the report’s late as is, sorry.
Link: https://lukasz.langa.pl/7613882f-364f-49ac-8d8c-d12a940384bb/
This week I spent most time mentoring as well as reviewing PRs. No highlights this time as the report’s late as is, sorry.
lukasz.langa.pl
Weekly Report, October 25 - 31 - Łukasz Langa
This week I spent most time mentoring as well as reviewing PRs. No highlights this time as the report’s late as is, sorry.
Brett Cannon: Unravelling decorators
Link: https://snarky.ca/unravelling-decorators/
For the next post in my syntactic sugar series, I thought I would tackle decorators.Let&aposs look at a simple example of a function that has a single decorator applied to it.@decorator
def func():
Link: https://snarky.ca/unravelling-decorators/
For the next post in my syntactic sugar series, I thought I would tackle decorators.Let&aposs look at a simple example of a function that has a single decorator applied to it.@decorator
def func():
Tall, Snarky Canadian
Unravelling decorators
For the next post in my syntactic sugar series
[https://snarky.ca/tag/syntactic-sugar/], I thought I would tackle decorators
[https://docs.python.org/3.8/reference/compound_stmts.html#function-definitions]
.
Let's look at a simple example of a function that…
[https://snarky.ca/tag/syntactic-sugar/], I thought I would tackle decorators
[https://docs.python.org/3.8/reference/compound_stmts.html#function-definitions]
.
Let's look at a simple example of a function that…
Stack Abuse: Python: Split String into List with split()
Link: https://stackabuse.com/python-split-string-into-list-with-split/
Data can take many shapes and forms - and it's oftentimes represented as strings.
Be it from a CSV file or input text, we split strings oftentimes to obtain lists of features or elements.
In this gui
Link: https://stackabuse.com/python-split-string-into-list-with-split/
Data can take many shapes and forms - and it's oftentimes represented as strings.
Be it from a CSV file or input text, we split strings oftentimes to obtain lists of features or elements.
In this gui
Stack Abuse
Python: Split String into List with split()
In this short guide, learn how to split a string into a list in Python. Also, learn how to split a string and then trim the elements, and make the first letters capitalized, through practical examples!
Python for Beginners: Python KeyError
Link: https://www.pythonforbeginners.com/basics/python-keyerror
You might have encountered KeyError while working with dictionaries in python. In this article, we will discuss what a KeyError is, how it occurs and how we can avoid a KeyError while working with a p
Link: https://www.pythonforbeginners.com/basics/python-keyerror
You might have encountered KeyError while working with dictionaries in python. In this article, we will discuss what a KeyError is, how it occurs and how we can avoid a KeyError while working with a p
PythonForBeginners.com
Python KeyError - PythonForBeginners.com
Python KeyError will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Paolo Amoroso: 4 Things Tutorials Don't Tell You About PyPI
Link: http://blog.paoloamoroso.com/2021/09/4-things-tutorials-dont-tell-you-about.html
Time to celebrate!I published my first Python package to PyPI, Suite8080. It’s a suite of Intel 8080 Assembly cross-development tools. It’s in early development, misses some tools, and is rough around
Link: http://blog.paoloamoroso.com/2021/09/4-things-tutorials-dont-tell-you-about.html
Time to celebrate!I published my first Python package to PyPI, Suite8080. It’s a suite of Intel 8080 Assembly cross-development tools. It’s in early development, misses some tools, and is rough around
Paoloamoroso
4 Things Tutorials Don't Tell You About PyPI
Paolo Amoroso’s blog on Google products and tech, using the cloud, astronomy and space, Python, self-publishing, blogging, content creation.
Real Python: Build a Content Aggregator in Python
Link: https://realpython.com/build-a-content-aggregator-python/
In this project-based tutorial, you’ll build a content aggregator from scratch using Python and the popular framework Django.
With so much content coming out online daily, it can be time consuming to
Link: https://realpython.com/build-a-content-aggregator-python/
In this project-based tutorial, you’ll build a content aggregator from scratch using Python and the popular framework Django.
With so much content coming out online daily, it can be time consuming to
Realpython
Build a Content Aggregator in Python – Real Python
In this project-based tutorial, you'll build a content aggregator from scratch with Python and Django. Using custom management commands, feedparser, and django-apscheduler, you'll set up an app to periodically parse RSS feeds for Python podcasts and display…
ItsMyCode: JSONDecodeError: Expecting value: line 1 column 1 (char 0)
Link: https://itsmycode.com/jsondecodeerror-expecting-value-line-1-column-1-char-0/
ItsMyCode |
If you are working with APIs and trying to fetch and parse the JSON data while making the HTTP or curl requests and JSON response is not well-formed, Python will throw json.decoder.jsondec
Link: https://itsmycode.com/jsondecodeerror-expecting-value-line-1-column-1-char-0/
ItsMyCode |
If you are working with APIs and trying to fetch and parse the JSON data while making the HTTP or curl requests and JSON response is not well-formed, Python will throw json.decoder.jsondec
ItsMyCode
JSONDecodeError: Expecting value: line 1 column 1 (char 0) - ItsMyCode
You will get jsondecodeerror: expecting value: line 1 column 1 (char 0) if the request is empty or the content type is not application/json
Quansight Labs Blog: NumPy Benchmarking
Link: https://labs.quansight.org/blog/2021/10/numpy-benchmarking/
In this blog post, I'll be talking about my journey in Quansight.
I want to share all things I was involved in and accomplished.
What issues I faced, and most importantly, what were awesome life hac
Link: https://labs.quansight.org/blog/2021/10/numpy-benchmarking/
In this blog post, I'll be talking about my journey in Quansight.
I want to share all things I was involved in and accomplished.
What issues I faced, and most importantly, what were awesome life hac
Quansight Labs
NumPy Benchmarking
In this blog post, I'll be talking about my journey in Quansight.
I want to share all things I was involved in and accomplished.
What issues I faced, and most importantly, what were awesome life hac
I want to share all things I was involved in and accomplished.
What issues I faced, and most importantly, what were awesome life hac
PyCharm: PyCharm 2021.3 EAP #4
Link: http://feedproxy.google.com/~r/Pycharm/~3/QnCGanyHA9Y/
The fourth PyCharm 2021.3 EAP build is out! Please give it a try, and don’t forget to share your feedback on Twitter (by mentioning @pycharm) or by reporting issues to our tracker!
DOWNLOAD PYCHARM 2
Link: http://feedproxy.google.com/~r/Pycharm/~3/QnCGanyHA9Y/
The fourth PyCharm 2021.3 EAP build is out! Please give it a try, and don’t forget to share your feedback on Twitter (by mentioning @pycharm) or by reporting issues to our tracker!
DOWNLOAD PYCHARM 2
JetBrains Blog
PyCharm 2021.3 EAP #4 | The PyCharm Blog
The fourth PyCharm 2021.3 EAP build is out! Please give it a try, and don't forget to share your feedback on Twitter (by mentioning @pycharm) or by reporting issues to our tracker!
DOWNLOAD PYCHARM
DOWNLOAD PYCHARM
Paolo Amoroso: An Intel 8080 Assembly Suite in Python
Link: http://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
A blog post I stumbled upon made me start a new project, crank out lots of Python code, slip down a rabbit hole of arcane and fascinating corners of retrocomputing, and overflow with fun.The project i
Link: http://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
A blog post I stumbled upon made me start a new project, crank out lots of Python code, slip down a rabbit hole of arcane and fascinating corners of retrocomputing, and overflow with fun.The project i
Paoloamoroso
An Intel 8080 Assembly Suite in Python
Suite8080 is a suite of Intel 8080 Assembly cross-development tools in Python comprising an assembler and a disassembler.
"Mathspp Pydon'ts": Pass-by-value, reference, and assignment | Pydon't 🐍
Link: https://mathspp.com/blog/pydonts/pass-by-value-reference-and-assignment
When you call a function in Python and give it some arguments...
Are they passed by value? No!
By reference? No!
They're passed by assignment.
(If you are new here and have no idea what a Pydon't is
Link: https://mathspp.com/blog/pydonts/pass-by-value-reference-and-assignment
When you call a function in Python and give it some arguments...
Are they passed by value? No!
By reference? No!
They're passed by assignment.
(If you are new here and have no idea what a Pydon't is
Mathspp
Pass-by-value, reference, and assignment | Pydon't 🐍
When you call a function in Python and give it some arguments...
Are they passed by value? No!
By reference? No!
They're passed by assignment.
Are they passed by value? No!
By reference? No!
They're passed by assignment.
ItsMyCode: Graphviz’s executables not found
Link: https://itsmycode.com/graphvizs-executables-not-found/
ItsMyCode |
Graphviz is open source graph visualization software that helps represent structural information as diagrams of abstract graphs and networks. Sometimes, if you install this on windows with
Link: https://itsmycode.com/graphvizs-executables-not-found/
ItsMyCode |
Graphviz is open source graph visualization software that helps represent structural information as diagrams of abstract graphs and networks. Sometimes, if you install this on windows with
Python for Beginners: Linear Search in Python
Link: https://www.pythonforbeginners.com/basics/linear-search-in-python
While programming, you must have encountered situations where we need to know the position of an element in a list. We can use the linear search algorithm for this purpose. In this article, we will im
Link: https://www.pythonforbeginners.com/basics/linear-search-in-python
While programming, you must have encountered situations where we need to know the position of an element in a list. We can use the linear search algorithm for this purpose. In this article, we will im
PythonForBeginners.com
Linear Search in Python - PythonForBeginners.com
Linear Search in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Matt Layman: Command Your App
Link: https://www.mattlayman.com/understand-django/command-apps/
In the last Understand Django article, we dug into file management. We saw how Django handles user uploaded files and how to deal with them safely.
With this article, you’ll learn about commands. Comm
Link: https://www.mattlayman.com/understand-django/command-apps/
In the last Understand Django article, we dug into file management. We saw how Django handles user uploaded files and how to deal with them safely.
With this article, you’ll learn about commands. Comm
Matt Layman
Command Your App
With this Understand Django article, you'll learn about commands. Commands are the way to execute scripts that interact with your Django app. We'll see built-in commands and how to build your own commands.
Sandro Tosi: Python: send emails with embedded images
Link: http://sandrotosi.blogspot.com/2020/12/python-sent-emails-with-embedded-images.html
to send emails with images you need to use MIMEMultipart, but the basic approach: import smtplibfrom email.mime.multipart import MIMEMultipartfrom email.mime.image import MIMEImagemsg = MIMEMultipart(
Link: http://sandrotosi.blogspot.com/2020/12/python-sent-emails-with-embedded-images.html
to send emails with images you need to use MIMEMultipart, but the basic approach: import smtplibfrom email.mime.multipart import MIMEMultipartfrom email.mime.image import MIMEImagemsg = MIMEMultipart(
Blogspot
Python: send emails with embedded images
to send emails with images you need to use MIMEMultipart , but the basic approach: import smtplib from email.mime.multipart import MIMEM...
Anarcat: A Python contextmanager gotcha
Link: https://anarc.at/blog/2021-11-04-contextmanager-gotcha/
Dear lazy web...
I've had this code sitting around as a wtf.py for a while. I've been
meaning to understand what's going on and write a blog post about it
for a while, but I'm lacking the time. Now th
Link: https://anarc.at/blog/2021-11-04-contextmanager-gotcha/
Dear lazy web...
I've had this code sitting around as a wtf.py for a while. I've been
meaning to understand what's going on and write a blog post about it
for a while, but I'm lacking the time. Now th
Python Bytes: #257 Python Launcher - Launching Python Everywhere
Link: https://pythonbytes.fm/episodes/show/257/python-launcher-launching-python-everywhere
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=Z_18H0DXJK0' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/257/python-launcher-launching-python-everywhere
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=Z_18H0DXJK0' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Python Launcher - Launching Python Everywhere
News and announcements from the Python community for the week of Nov 4th, 2021
Talk Python to Me: #339: Making Python Faster with Guido and Mark
Link: https://talkpython.fm/episodes/show/339/making-python-faster-with-guido-and-mark
There has a been a bunch of renewed interested in making Python faster. While for some of us, Python is already plenty fast. For others, such as those in data science, scientific computing, and even t
Link: https://talkpython.fm/episodes/show/339/making-python-faster-with-guido-and-mark
There has a been a bunch of renewed interested in making Python faster. While for some of us, Python is already plenty fast. For others, such as those in data science, scientific computing, and even t
talkpython.fm
Making Python Faster with Guido and Mark
There has a been a bunch of renewed interested in making Python faster. While for some of us, Python is already plenty fast. For others, such as those in data science, scientific computing, and even the large tech companies, making Python even a little faster…
Real Python: The Real Python Podcast – Episode #85: Exploring Django Templates, Tags, and Filters
Link: https://realpython.com/podcasts/rpp/85/
Are you getting the most out of the Django framework? It's a powerful web framework if you're not interested in reinventing the wheel. Django includes a useful template system with inheritance for com
Link: https://realpython.com/podcasts/rpp/85/
Are you getting the most out of the Django framework? It's a powerful web framework if you're not interested in reinventing the wheel. Django includes a useful template system with inheritance for com
Realpython
Episode #85: Exploring Django Templates, Tags, and Filters – The Real Python Podcast
Are you getting the most out of the Django framework? It's a powerful web framework if you're not interested in reinventing the wheel. Django includes a useful template system with inheritance for composing reusable HTML. This week on the show, we have previous…