The Best Way to Request User Input in Python
https://medium.com/code-85/the-best-way-to-request-user-input-in-python-e072a808dc82
https://medium.com/code-85/the-best-way-to-request-user-input-in-python-e072a808dc82
Medium
The Best Way to Request User Input in Python
Take advantage of the PyInputPlus Module
How to Profile Python Code with Pyroscope’s Pip Package
https://rperry2174.medium.com/how-to-profile-python-code-with-pyroscopes-pip-package-d0b83df02c09
https://rperry2174.medium.com/how-to-profile-python-code-with-pyroscopes-pip-package-d0b83df02c09
Medium
How to Profile Python Code with Pyroscope’s Pip Package
Continuous Profiling in Python
Why You Shouldn’t Invoke setup.py Directly
https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html
https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html
Paul Ganssle
Paul Ganssle - Why you shouldn't invoke setup.py directly
The setup.py interface is an old convention from distutils, one that has bugs that cannot be fixed to bring it into line with modern Python packaging approaches. As a result, all direct...
Announcing PSF Fellow Members for Q3 2021
https://pyfound.blogspot.com/2021/10/announcing-python-software-foundation.html
https://pyfound.blogspot.com/2021/10/announcing-python-software-foundation.html
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...
Join the Python Developers Survey 2021
https://pyfound.blogspot.com/2021/10/join-python-developers-survey-2021.html
https://pyfound.blogspot.com/2021/10/join-python-developers-survey-2021.html
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...
Tests Aren’t Enough: Case Study After Adding Type Hints to urllib3
https://sethmlarson.dev/blog/2021-10-18/tests-arent-enough-case-study-after-adding-types-to-urllib3
https://sethmlarson.dev/blog/2021-10-18/tests-arent-enough-case-study-after-adding-types-to-urllib3
sethmlarson.dev
Tests aren’t enough: Case study after adding type hints to urllib3
Since Python 3.5 was released in 2015 including PEP 484 and the typing module type hints have grown from a nice-to-have to an expectation for popular packages. To fulfill this expectation our team...
Python Assignment Expressions and Using the Walrus Operator
https://realpython.com/courses/python-assignment-expressions-walrus-operator/
https://realpython.com/courses/python-assignment-expressions-walrus-operator/
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…
Pip vs Conda: A Comparison of Python’s Two Packaging Systems
https://pythonspeed.com/articles/conda-vs-pip/
https://pythonspeed.com/articles/conda-vs-pip/
Python⇒Speed
Pip vs Conda: an in-depth comparison of Python’s two packaging systems
Python has two packaging systems, pip and Conda. Learn the differences between them so you can pick the right one for you.