Real Python: Using the len() Function in Python
Link: https://realpython.com/len-python-function/
In many situations, you’ll need to find the number of items stored in a data structure. Python’s built-in function len() is the tool that will help you with this task.
There are some cases in which th
Link: https://realpython.com/len-python-function/
In many situations, you’ll need to find the number of items stored in a data structure. Python’s built-in function len() is the tool that will help you with this task.
There are some cases in which th
Realpython
Using the len() Function in Python – Real Python
In this tutorial, you'll learn how and when to use the len() Python function. You'll also learn how to customize your class definitions so that objects of a user-defined class can be used as arguments in len().
PyCon: PyCon US 2022 Website and Sponsorship Program Launch!
Link: https://pycon.blogspot.com/2021/10/pycon-us-2022-website-and-sponsorship.html
With PyCon US 2022 planning underway, we are excited to be launching the conference website along with our sponsorship program. Our team is planning to host the event in person with an online componen
Link: https://pycon.blogspot.com/2021/10/pycon-us-2022-website-and-sponsorship.html
With PyCon US 2022 planning underway, we are excited to be launching the conference website along with our sponsorship program. Our team is planning to host the event in person with an online componen
Blogspot
PyCon US 2022 Website and Sponsorship Program Launch!
With PyCon US 2022 planning underway, we are excited to be launching the conference website along with our sponsorship program. Our team is ...
Ben Cook: Poetry for Package Management in Machine Learning Projects
Link: https://sparrow.dev/python-poetry-machine-learning/
When you’re building a production machine learning system, reproducibility is a proxy for the effectiveness of your development process. But without locking all your Python dependencies, your builds a
Link: https://sparrow.dev/python-poetry-machine-learning/
When you’re building a production machine learning system, reproducibility is a proxy for the effectiveness of your development process. But without locking all your Python dependencies, your builds a
Sparrow Computing
Poetry for Package Management in Machine Learning Projects
When you're building a production machine learning system, reproducibility is a proxy for the effectiveness of your development process. But without locking all your Python dependencies, your builds are not actually repeatable. If you work in a Python project…
Python Bytes: #255 Closember eve, the cure for Hacktoberfest?
Link: https://pythonbytes.fm/episodes/show/255/closember-eve-the-cure-for-hacktoberfest
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=ICp8eD6uENI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/255/closember-eve-the-cure-for-hacktoberfest
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=ICp8eD6uENI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Closember eve, the cure for Hacktoberfest?
News and announcements from the Python community for the week of Oct 20th, 2021
Ben Cook: NumPy Any: Understanding np.any()
Link: https://sparrow.dev/numpy-any/
The np.any() function tests whether any element in a NumPy array evaluates to true:
np.any(np.array([[1, 0], [0, 0]]))
# Expected result
# True
The input can have any shape and the data type does not
Link: https://sparrow.dev/numpy-any/
The np.any() function tests whether any element in a NumPy array evaluates to true:
np.any(np.array([[1, 0], [0, 0]]))
# Expected result
# True
The input can have any shape and the data type does not
Sparrow Computing
NumPy Any: Understanding np.any() - Sparrow Computing
The np.any() function tests whether any element in a NumPy array evaluates to true: The input can have any shape and the data type does not have to be boolean (as long as it’s truthy). If none of the elements evaluate to true, the function returns false:…
qutebrowser development blog: CVE-2021-41146: Arbitrary command execution in qutebrowser on Windows via URL handler
Link: https://blog.qutebrowser.org/cve-2021-41146-arbitrary-command-execution-in-qutebrowser-on-windows-via-url-handler.html
I'm happy to announce that I just released qutebrowser v2.4.0!
This release fixes a high-severity arbitrary command execution on Windows via
URL handlers, see the security advisory
and commit message
Link: https://blog.qutebrowser.org/cve-2021-41146-arbitrary-command-execution-in-qutebrowser-on-windows-via-url-handler.html
I'm happy to announce that I just released qutebrowser v2.4.0!
This release fixes a high-severity arbitrary command execution on Windows via
URL handlers, see the security advisory
and commit message
PyCharm: PyCharm 2021.3 EAP #3
Link: http://feedproxy.google.com/~r/Pycharm/~3/y5EIaTsilGs/
The third 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!
Important:
PyCharm
Link: http://feedproxy.google.com/~r/Pycharm/~3/y5EIaTsilGs/
The third 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!
Important:
PyCharm
JetBrains Blog
PyCharm 2021.3 EAP #3 | The PyCharm Blog
The third 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!
Important:
PyC
Important:
PyC
Reuven Lerner: Stop fearing Python decorators
Link: https://lerner.co.il/2021/10/21/stop-fearing-python-decorators/
If I mention “decorators,” even if you’ve been programming with Python for a while, what comes to mind?
To many, decorators are mysterious and powerful — and beyond the reach of mere mortals. Their @
Link: https://lerner.co.il/2021/10/21/stop-fearing-python-decorators/
If I mention “decorators,” even if you’ve been programming with Python for a while, what comes to mind?
To many, decorators are mysterious and powerful — and beyond the reach of mere mortals. Their @
Reuven Lerner
Stop fearing Python decorators
If I mention "decorators," even if you've been programming with Python for a while, what comes to mind? To many, decorators are mysterious and powerful — and beyond the reach of mere mortals. Their @
Łukasz Langa: PEP 563 and PEP 649
Link: https://lukasz.langa.pl/61df599c-d9d8-4938-868b-36b67fdb4448/
As the author of PEP 563, I can summarize my position as follows: had PEP 563 never been implemented, it would be easy to accept PEP 649. However, in the current situation it’s not that clear because
Link: https://lukasz.langa.pl/61df599c-d9d8-4938-868b-36b67fdb4448/
As the author of PEP 563, I can summarize my position as follows: had PEP 563 never been implemented, it would be easy to accept PEP 649. However, in the current situation it’s not that clear because
lukasz.langa.pl
PEP 563 and PEP 649 - Łukasz Langa
As the author of PEP 563, I can summarize my position as follows: had PEP 563 never been implemented, it would be easy to accept PEP 649. However, in the current situation it’s not that clear because I find it very important to allow writing a single codebase…
Ben Cook: Development containers in VS Code: a quick start guide
Link: https://sparrow.dev/devcontainers-quickstart/
If you’re building production ML systems, dev containers are the killer feature of VS Code. Dev containers give you full VS Code functionality inside a Docker container. This lets you unify your dev a
Link: https://sparrow.dev/devcontainers-quickstart/
If you’re building production ML systems, dev containers are the killer feature of VS Code. Dev containers give you full VS Code functionality inside a Docker container. This lets you unify your dev a
Sparrow Computing
Development containers in VS Code: a quick start guide
If you’re building production ML systems, dev containers are the killer feature of VS Code. Dev containers give you full VS Code functionality inside a Docker container. This lets you unify your dev and production environments if production is a Docker container.…
Test and Code: 167: React, TypeScript, and the Joy of Testing - Paul Everitt
Link: https://testandcode.com/167
Paul has a tutorial on testing and TDD with React and TypeScript.
We discuss workflow and the differences, similarities between testing with React/TypeScript and Python.
We also discuss what lessons
Link: https://testandcode.com/167
Paul has a tutorial on testing and TDD with React and TypeScript.
We discuss workflow and the differences, similarities between testing with React/TypeScript and Python.
We also discuss what lessons
Test & Code in Python
Test & Code in Python 167: React, TypeScript, and the Joy of Testing - Paul Everitt
Paul has a tutorial on testing and TDD with React and TypeScript.
We discuss workflow and the differences, similarities between testing with React/TypeScript and Python.
We discuss workflow and the differences, similarities between testing with React/TypeScript and Python.
Python GUIs: [updated for PyQt6] Creating your first app with PyQt — A simple Hello World! application with Python and Qt5
Link: https://www.pythonguis.com/tutorials/creating-your-first-pyqt-window/
PyQt is a Python library for creating GUI applications using the Qt toolkit.
Created by Riverbank Computing, PyQt is free software (GPL licensed) and has been in development since 1999. The latest ver
Link: https://www.pythonguis.com/tutorials/creating-your-first-pyqt-window/
PyQt is a Python library for creating GUI applications using the Qt toolkit.
Created by Riverbank Computing, PyQt is free software (GPL licensed) and has been in development since 1999. The latest ver
Python GUIs
Create your first Python GUI with PyQt5 — A simple Hello world app
Start building Python GUIs with PyQt5. A step-by-step guide to creating your first window application, perfect for beginners looking to explore PyQt5 development. Following this simple outline you can start building the rest of your app. In this tutorial…
Stack Abuse: Integrating Matplotlib Charts in a PDF in Python With borb
Link: https://stackabuse.com/integrating-matplotlib-charts-in-a-pdf-in-python-with-borb/
Introduction
The Portable Document Format (PDF) is not a WYSIWYG (What You See is What You Get) format. It was developed to be platform-agnostic, independent of the underlying operating system and ren
Link: https://stackabuse.com/integrating-matplotlib-charts-in-a-pdf-in-python-with-borb/
Introduction
The Portable Document Format (PDF) is not a WYSIWYG (What You See is What You Get) format. It was developed to be platform-agnostic, independent of the underlying operating system and ren
Stack Abuse
Integrating Matplotlib Charts in a PDF in Python With borb
The Portable Document Format (PDF) is not a WYSIWYG (What You See is What You Get) format. It was developed to be platform-agnostic, independent of the underly...
Real Python: The Real Python Podcast – Episode #83: Ready to Publish Your Python Packages?
Link: https://realpython.com/podcasts/rpp/83/
Are you interested in sharing your Python project with the broader world? Would you like to make it easily installable using pip? How do you create Python packages that share your code in a scalable a
Link: https://realpython.com/podcasts/rpp/83/
Are you interested in sharing your Python project with the broader world? Would you like to make it easily installable using pip? How do you create Python packages that share your code in a scalable a
Realpython
Episode #83: Ready to Publish Your Python Packages? – The Real Python Podcast
Are you interested in sharing your Python project with the broader world? Would you like to make it easily installable using pip? How do you create Python packages that share your code in a scalable and maintainable way? This week on the show, Real Python…
Python for Beginners: Compare two lists in Python
Link: https://www.pythonforbeginners.com/basics/compare-two-lists-in-python
While programming in python, comparison has to be done very often for checking different conditions. We may need to compare two variables or two groups of variables for a single condition checking. In
Link: https://www.pythonforbeginners.com/basics/compare-two-lists-in-python
While programming in python, comparison has to be done very often for checking different conditions. We may need to compare two variables or two groups of variables for a single condition checking. In
PythonForBeginners.com
Compare two lists in Python - PythonForBeginners.com
Compare two lists in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Ben Cook: TorchVision Datasets: Getting Started
Link: https://sparrow.dev/torchvision-datasets/
The TorchVision datasets subpackage is a convenient utility for accessing well-known public image and video datasets. You can use these tools to start training new computer vision models very quickly.
Link: https://sparrow.dev/torchvision-datasets/
The TorchVision datasets subpackage is a convenient utility for accessing well-known public image and video datasets. You can use these tools to start training new computer vision models very quickly.
Sparrow Computing
TorchVision Datasets: Getting Started - Sparrow Computing
The TorchVision datasets subpackage is a convenient utility for accessing well-known public image and video datasets.
Andre Roberge: Forgot to set up custom exception hook? Perhaps it is not too late.
Link: https://aroberge.blogspot.com/2021/10/forgot-to-set-up-custom-exception-hook.html
There are many custom exception hook that seek to improve upon the standard one from Python. The very first one is Python's cgitb module, but there are many others including, in no particular order, b
Link: https://aroberge.blogspot.com/2021/10/forgot-to-set-up-custom-exception-hook.html
There are many custom exception hook that seek to improve upon the standard one from Python. The very first one is Python's cgitb module, but there are many others including, in no particular order, b
Blogspot
Forgot to set up a custom exception hook? Perhaps it is not too late.
There are many custom exception hook that seek to improve upon the standard one from Python. The very first one is Python's cgitb module, b...
Ben Cook: TorchVision Transforms: Image Preprocessing in PyTorch
Link: https://sparrow.dev/torchvision-transforms/
TorchVision, a PyTorch computer vision package, has a simple API for image pre-processing in its torchvision.transforms module. The module contains a set of common, composable image transforms and giv
Link: https://sparrow.dev/torchvision-transforms/
TorchVision, a PyTorch computer vision package, has a simple API for image pre-processing in its torchvision.transforms module. The module contains a set of common, composable image transforms and giv
Sparrow Computing
TorchVision Transforms: Image Preprocessing in PyTorch
This post explains the torchvision.transforms module by describing the API and showing you how to create custom image transforms.
Weekly Python StackOverflow Report: (ccxcviii) stackoverflow python report
Link: http://python-weekly.blogspot.com/2021/10/ccxcviii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-10-23 13:48:47 GMTWhy does redefining a variable used in a generat
Link: http://python-weekly.blogspot.com/2021/10/ccxcviii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-10-23 13:48:47 GMTWhy does redefining a variable used in a generat
Blogspot
(ccxcviii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2021...
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.