Python Software Foundation: Join the Python Developers Survey 2021: Share and learn about the community
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/M9jMg4myXFk/join-python-developers-survey-2021.html
This year we are conducting the fifth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the results
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/M9jMg4myXFk/join-python-developers-survey-2021.html
This year we are conducting the fifth iteration of the official Python Developers Survey. The goal is to capture the current state of the language and the ecosystem around it. By comparing the results
Blogspot
Join the Python Developers Survey 2021: Share and learn about the community
This year we are conducting the fifth iteration of the official Python Developers Survey . The goal is to capture the current state of the l...
PyCharm: Webinar: “Smarter FastAPI Through Tooling” with Sebastián Ramírez
Link: http://feedproxy.google.com/~r/Pycharm/~3/UNEN6iZM9Gs/
FastAPI has quickly become super-popular. One of the reasons: embracing standards which help tooling, which then boost productivity. This is something FastAPI’s author, Sebastián Ramírez, really cares
Link: http://feedproxy.google.com/~r/Pycharm/~3/UNEN6iZM9Gs/
FastAPI has quickly become super-popular. One of the reasons: embracing standards which help tooling, which then boost productivity. This is something FastAPI’s author, Sebastián Ramírez, really cares
JetBrains Blog
Webinar: “Smarter FastAPI Through Tooling” with Sebastián Ramírez | The PyCharm Blog
FastAPI has quickly become super-popular. One of the reasons: embracing standards which help tooling, which then boost productivity. This is something FastAPI’s author, Sebastián Ramírez, really cares
Łukasz Langa: Where does all the effort go? Looking at Python core developer activity
Link: https://lukasz.langa.pl/f15a8851-af26-4e94-a4b1-c146c57c9d20/
One of the tasks given me by the Python Software Foundation as part of the Developer in Residence job was to look at the state of CPython as an active software development project. What are people wor
Link: https://lukasz.langa.pl/f15a8851-af26-4e94-a4b1-c146c57c9d20/
One of the tasks given me by the Python Software Foundation as part of the Developer in Residence job was to look at the state of CPython as an active software development project. What are people wor
lukasz.langa.pl
Where does all the effort go? Looking at Python core developer activity - Łukasz Langa
One of the tasks given me by the Python Software Foundation as part of the Developer in Residence job was to look at the state of CPython as an active software development project. What are people working on? Which standard libraries require most work? Who…
Łukasz Langa: Weekly Report, October 11 - 17
Link: https://lukasz.langa.pl/3996b050-6446-4eac-85b2-f6056480003d/
Very few merged PRs this week as I focused on pushing the report out. And it’s out 😅
Link: https://lukasz.langa.pl/3996b050-6446-4eac-85b2-f6056480003d/
Very few merged PRs this week as I focused on pushing the report out. And it’s out 😅
lukasz.langa.pl
Weekly Report, October 11 - 17 - Łukasz Langa
Very few merged PRs this week as I focused on pushing the report out. And it’s out 😅
Codementor: Know to read mails using Python
Link: https://www.codementor.io/cloudytech147/know-to-read-mails-using-python-1m7t1d9kk3
Know how to read mails using Python
Link: https://www.codementor.io/cloudytech147/know-to-read-mails-using-python-1m7t1d9kk3
Know how to read mails using Python
www.codementor.io
Know to read mails using Python | Codementor
Know how to read mails using Python
Python Software Foundation: Announcing Python Software Foundation Fellow Members for Q3 2021! 🎉
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/T_dCR6_vuA8/announcing-python-software-foundation.html
The PSF is pleased to announced its third batch of PSF Fellows for 2021! Let us welcome the new PSF Fellows for Q3! The following people continue to do amazing things for the Python community:Anthony
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/T_dCR6_vuA8/announcing-python-software-foundation.html
The PSF is pleased to announced its third batch of PSF Fellows for 2021! Let us welcome the new PSF Fellows for Q3! The following people continue to do amazing things for the Python community:Anthony
Blogspot
Announcing Python Software Foundation Fellow Members for Q3 2021! 🎉
The PSF is pleased to announced its third batch of PSF Fellows for 2021! Let us welcome the new PSF Fellows for Q3! The following people con...
Python for Beginners: Create Generator from a List in Python
Link: https://www.pythonforbeginners.com/basics/create-generator-from-a-list-in-python
Generators in Python are a very useful tool for accessing elements from a container object. In this article, we will discuss how we can create a generator from a list and why we need to do this. Here
Link: https://www.pythonforbeginners.com/basics/create-generator-from-a-list-in-python
Generators in Python are a very useful tool for accessing elements from a container object. In this article, we will discuss how we can create a generator from a list and why we need to do this. Here
PythonForBeginners.com
Create Generator from a List in Python - PythonForBeginners.com
Create Generator from a List in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: Python Assignment Expressions and Using the Walrus Operator
Link: https://realpython.com/courses/python-assignment-expressions-walrus-operator/
Each new version of Python adds new features to the language. For Python 3.8, the biggest change is the addition of assignment expressions. Specifically, the := operator gives you a new syntax for ass
Link: https://realpython.com/courses/python-assignment-expressions-walrus-operator/
Each new version of Python adds new features to the language. For Python 3.8, the biggest change is the addition of assignment expressions. Specifically, the := operator gives you a new syntax for ass
Realpython
Python Assignment Expressions and Using the Walrus Operator – Real Python
In this course, you'll learn about assignment expressions and the walrus operator. The biggest change in Python 3.8 was the inclusion of the := operator, which you can use to assign variables in the middle of expressions. You'll see several examples of how…
Quansight Labs Blog: An efficient method of calling C++ functions from numba using clang++/ctypes/rbc
Link: https://labs.quansight.org/blog/2021/10/cxx-numba-interoperability/
The aim of this document is to explore a method of calling C++ library
functions from Numba compiled
functions
--- Python functions that are decorated with
numba.jit(nopython=True).
While there exist
Link: https://labs.quansight.org/blog/2021/10/cxx-numba-interoperability/
The aim of this document is to explore a method of calling C++ library
functions from Numba compiled
functions
--- Python functions that are decorated with
numba.jit(nopython=True).
While there exist
Quansight Labs
An efficient method of calling C++ functions from numba using clang++/
The aim of this post is to explore a method of calling C++ library
functions from Numba compiled
functions
--- Python functions that are decorated with
numba.jit(nopython=True).
While there exist ways
functions from Numba compiled
functions
--- Python functions that are decorated with
numba.jit(nopython=True).
While there exist ways
Peter Bengtsson: How to string pad a string in Python with a variable
Link: https://www.peterbe.com/plog/zfill-string-in-python-with-variable
I just have to write this down because that's the rule; if I find myself googling something basic like this more than once, it's worth blogging about.
Suppose you have a string and you want to pad wit
Link: https://www.peterbe.com/plog/zfill-string-in-python-with-variable
I just have to write this down because that's the rule; if I find myself googling something basic like this more than once, it's worth blogging about.
Suppose you have a string and you want to pad wit
Peterbe
How to string pad a string in Python with a variable
Stuff in Peter's head
PyCoder’s Weekly: Issue #495 (Oct. 19, 2021)
Link: https://pycoders.com/issues/495
#495 – OCTOBER 19, 2021 View in Browser » No-GIL Fork of CPython This is a proof-of-concept implementation of CPython that supports multithreading without the global interpreter lock (GIL), from
Link: https://pycoders.com/issues/495
#495 – OCTOBER 19, 2021 View in Browser » No-GIL Fork of CPython This is a proof-of-concept implementation of CPython that supports multithreading without the global interpreter lock (GIL), from
Pycoders
PyCoder’s Weekly | Issue #495
Issue #495 of the PyCoder’s Weekly newsletter, published Oct. 19, 2021.
Wingware: Wing Python IDE Version 8.1 - October 19, 2021
Link: https://wingware.com/news/2021-10-19
Wing 8.1 adds Delete Symbol and Rename Current Module refactoring operations, improves
some aspects of type analysis, fixes occasional failure to detect Python Path, fixes
starting the remote agent in
Link: https://wingware.com/news/2021-10-19
Wing 8.1 adds Delete Symbol and Rename Current Module refactoring operations, improves
some aspects of type analysis, fixes occasional failure to detect Python Path, fixes
starting the remote agent in
Wingware
Wing Python IDE Version 8.1 - October 19, 2021 - Wing Python IDE
Wing 8.1 adds Delete Symbol and Rename Current Module refactoring operations, improves
some aspects of type analysis, fixes occasional failure to detect Python Path, fixes
starting the remote agent in some cases, correct reports exception from Django templates…
some aspects of type analysis, fixes occasional failure to detect Python Path, fixes
starting the remote agent in some cases, correct reports exception from Django templates…
Python Anywhere: Our October system update
Link: https://blog.pythonanywhere.com/199/
On 6 October we upgraded our EU-based systems to the latest version of our platform, and today, 20
October, we did the same upgrade on our US-based system. There are a bunch of
changes to report!
Link: https://blog.pythonanywhere.com/199/
On 6 October we upgraded our EU-based systems to the latest version of our platform, and today, 20
October, we did the same upgrade on our US-based system. There are a bunch of
changes to report!
PyCharm: PyCharm 2021.2.3 Is Out!
Link: http://feedproxy.google.com/~r/Pycharm/~3/RuwqVk5PiW8/
The third minor release of PyCharm 2021.2 contains multiple bug fixes:
We fixed a bug where PEP 585 parameterized built-in classes were not recognized when using from __future__ import annotations. [
Link: http://feedproxy.google.com/~r/Pycharm/~3/RuwqVk5PiW8/
The third minor release of PyCharm 2021.2 contains multiple bug fixes:
We fixed a bug where PEP 585 parameterized built-in classes were not recognized when using from __future__ import annotations. [
JetBrains Blog
PyCharm 2021.2.3 Is Out! | The PyCharm Blog
The third minor release of PyCharm 2021.2 contains multiple bug fixes:
Download PyCharm 2021.2.3
For the full list of issues addressed in PyCharm 2021.2.3, please see the release notes.
Found a
Download PyCharm 2021.2.3
For the full list of issues addressed in PyCharm 2021.2.3, please see the release notes.
Found a
Python for Beginners: Iterator in Python
Link: https://www.pythonforbeginners.com/basics/iterator-in-python
You must have used different data structures like python dictionary, list, tuple and set while programming. We often need to access the elements of these data structures in a sequential manner. To ite
Link: https://www.pythonforbeginners.com/basics/iterator-in-python
You must have used different data structures like python dictionary, list, tuple and set while programming. We often need to access the elements of these data structures in a sequential manner. To ite
PythonForBeginners.com
Iterator in Python - PythonForBeginners.com
Iterator in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
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