Python Morsels: Unindenting multi-line strings in Python
Link: https://www.pythonmorsels.com/dedent/
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Table of contents
Manually dedenting multi-line strings
Using tex
Link: https://www.pythonmorsels.com/dedent/
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Table of contents
Manually dedenting multi-line strings
Using tex
Pythonmorsels
Unindent multiline strings in Python with dedent
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!
Kushal Das: Introducing pyarti, python module for the Tor Project
Link: https://kushaldas.in/posts/introducing-pyarti-python-module-for-the-tor-project.html
python3 -m pip install pyarti
pyarti is a Python module written in
Rust using Arti from the Tor
Project. Right now pyarti is in the initial stage, and you can create a SOCKS5
proxy object, and pass
Link: https://kushaldas.in/posts/introducing-pyarti-python-module-for-the-tor-project.html
python3 -m pip install pyarti
pyarti is a Python module written in
Rust using Arti from the Tor
Project. Right now pyarti is in the initial stage, and you can create a SOCKS5
proxy object, and pass
Mike Driscoll: The Python Quiz Book Kickstarter
Link: https://www.blog.pythonlibrary.org/2022/10/10/the-python-quiz-book-kickstarter/
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python programming language. The Python Quiz Book isn't made t
Link: https://www.blog.pythonlibrary.org/2022/10/10/the-python-quiz-book-kickstarter/
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python programming language. The Python Quiz Book isn't made t
Mouse Vs Python
The Python Quiz Book Kickstarter - Mouse Vs Python
Quizzes are a fun way to test your knowledge of something. They make you think. The Python Quiz Book is all about brain teasers for the Python
PyBites: Become a more effective learner with Russell Helmstedter
Link: https://pybit.es/articles/pp90-become-a-more-effective-learner/
Listen now:
This week we have Russell Helmstedter (@rhelmstedter) on the show to talk about a book about learning that will blow your mind: Learn Better We talk through the six facets of learning the
Link: https://pybit.es/articles/pp90-become-a-more-effective-learner/
Listen now:
This week we have Russell Helmstedter (@rhelmstedter) on the show to talk about a book about learning that will blow your mind: Learn Better We talk through the six facets of learning the
PyBites
Become A More Effective Learner With Russell Helmstedter - PyBites
Listen now:
Codementor: Android's Lock Screen Pattern In Pygame
Link: https://www.codementor.io/abdurrahmaanj/android-s-lock-screen-pattern-in-pygame-1y12ejsg3s
Learn how to implement Android's lock screen pattern in pygame
Link: https://www.codementor.io/abdurrahmaanj/android-s-lock-screen-pattern-in-pygame-1y12ejsg3s
Learn how to implement Android's lock screen pattern in pygame
www.codementor.io
Android's Lock Screen Pattern In Pygame | Codementor
Learn how to implement Android's lock screen pattern in pygame
IslandT: Python Example — What is the total ASCII values of characters in the Hello World string
Link: https://islandtropicaman.com/wp/2022/10/11/python-example-what-is-the-total-ascii-values-of-characters-in-the-hello-world-string/
I always want to know what is the total value of all the ASCII values of characters in the Hello World string. In order to get the ASCII value of a character, I will use the Python ord method to find
Link: https://islandtropicaman.com/wp/2022/10/11/python-example-what-is-the-total-ascii-values-of-characters-in-the-hello-world-string/
I always want to know what is the total value of all the ASCII values of characters in the Hello World string. In order to get the ASCII value of a character, I will use the Python ord method to find
Real Python: Providing Multiple Constructors in Your Python Classes
Link: https://realpython.com/courses/multiple-constructors-python/
Sometimes you need to write a Python class that provides multiple ways to construct objects. In other words, you want a class that implements multiple constructors. This kind of class comes in handy w
Link: https://realpython.com/courses/multiple-constructors-python/
Sometimes you need to write a Python class that provides multiple ways to construct objects. In other words, you want a class that implements multiple constructors. This kind of class comes in handy w
Realpython
Using Multiple Constructors in Your Python Classes – Real Python
In this video course, you'll learn how to provide multiple constructors in your Python classes. To this end, you'll learn different techniques, such as checking argument types, using default argument values, writing class methods, and implementing single…
PyCharm: PyCharm 2022.2.3 Is Out!
Link: https://blog.jetbrains.com/pycharm/2022/10/pycharm-2022-2-3/
We are releasing PyCharm 2022.2.3, which contains important fixes for workflows, including remote interpreters, and fixes for working with MicroPython plugin and the recent Matplotlib 3.6.0 package.
Link: https://blog.jetbrains.com/pycharm/2022/10/pycharm-2022-2-3/
We are releasing PyCharm 2022.2.3, which contains important fixes for workflows, including remote interpreters, and fixes for working with MicroPython plugin and the recent Matplotlib 3.6.0 package.
The JetBrains Blog
PyCharm 2022.2.3 Is Out! | The PyCharm Blog
We are releasing PyCharm 2022.2.3, which contains important fixes for workflows, including remote interpreters, and fixes for working with MicroPython plugin and the recent Matplotlib 3.6.0 package.
Brett Cannon: Unravelling `if` statements
Link: https://snarky.ca/unravelling-if-statements/
After the initial posting of my summary post about my syntactic sugar series, I received the following reply to one of my tweets:🤔 wondering… ‘if/else’ (14 on your list) can be implemented in terms of
Link: https://snarky.ca/unravelling-if-statements/
After the initial posting of my summary post about my syntactic sugar series, I received the following reply to one of my tweets:🤔 wondering… ‘if/else’ (14 on your list) can be implemented in terms of
Tall, Snarky Canadian
Unravelling `if` statements
After the initial posting of my summary post about my syntactic sugar series, I received the following reply to one of my tweets:
🤔 wondering… ‘if/else’ (14 on your list) can be implemented in terms of ‘while’ (15 on your list)? something like this:
run_else…
🤔 wondering… ‘if/else’ (14 on your list) can be implemented in terms of ‘while’ (15 on your list)? something like this:
run_else…
PyCoder’s Weekly: Issue #546 (Oct. 11, 2022)
Link: https://pycoders.com/issues/546
#546 – OCTOBER 11, 2022 View in Browser » Using a Memory Profiler in Python & What It Can Teach You Have you used a memory profiler to gauge the performance of your Python application? Maybe you
Link: https://pycoders.com/issues/546
#546 – OCTOBER 11, 2022 View in Browser » Using a Memory Profiler in Python & What It Can Teach You Have you used a memory profiler to gauge the performance of your Python application? Maybe you
Pycoders
PyCoder’s Weekly | Issue #546
Issue #546 of the PyCoder’s Weekly newsletter, published Oct. 11, 2022.
Stack Abuse: Instance Segmentation with YOLOv7 in Python
Link: https://stackabuse.com/instance-segmentation-with-yolov7-in-python/
Introduction
Object detection is a large field in computer vision, and one of the more important applications of computer vision "in the wild". From it, instance segmentation was extracted, and is tas
Link: https://stackabuse.com/instance-segmentation-with-yolov7-in-python/
Introduction
Object detection is a large field in computer vision, and one of the more important applications of computer vision "in the wild". From it, instance segmentation was extracted, and is tas
Stack Abuse
Instance Segmentation with YOLOv7 in Python
In this practical guide, learn how to perform easy but powerful and fast instance segmentation and object detection in Python with YOLOv7 and Detectron2.
Python Software Foundation: Join the Python Developers Survey 2022: Share and learn about the community
Link: http://pyfound.blogspot.com/2022/10/join-python-developers-survey-2022.html
This year we are conducting the fourth 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 result
Link: http://pyfound.blogspot.com/2022/10/join-python-developers-survey-2022.html
This year we are conducting the fourth 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 result
Python Software Foundation Blog
Join the Python Developers Survey 2022: Share and learn about the community
This year we are conducting the sixth iteration of the official Python Developers Survey. The goal is to capture the current sta...
The Python Coding Blog: Mini-Post: Exploring Python Functions Through Experimentation
Link: https://thepythoncodingbook.com/2022/10/11/exploring-python-functions-through-experimentation/
Read the docs. Look at the source code. Yes, these are great tips to figure out what’s happening underneath the hood. But sometimes you want to do a bit of experimentation and exploration of your own
Link: https://thepythoncodingbook.com/2022/10/11/exploring-python-functions-through-experimentation/
Read the docs. Look at the source code. Yes, these are great tips to figure out what’s happening underneath the hood. But sometimes you want to do a bit of experimentation and exploration of your own
The Python Coding Book
Put on a detective hat to explore a Python function
Sometimes it's more fun and instructive to put on a detective hat to explore a Python function rather than go straight to the docs
IslandT: Python Example — Write a Python program to find the permutation of an event
Link: https://islandtropicaman.com/wp/2022/10/12/python-example-write-a-python-program-to-find-the-permutation-of-an-event/
In this example let us create a Python program that will find the permutation of an event. A permutation event is very confusing to me and I am still learning it thus this article is not about explain
Link: https://islandtropicaman.com/wp/2022/10/12/python-example-write-a-python-program-to-find-the-permutation-of-an-event/
In this example let us create a Python program that will find the permutation of an event. A permutation event is very confusing to me and I am still learning it thus this article is not about explain
EuroPython Society: EuroPython Society General Assembly 2022
Link: https://www.europython-society.org/europython-society-general-assembly-2022/
It feels like yesterday that many of us were together in Dublin or online for EuroPython 2022. Each year, the current board of the EuroPython Society (EPS) holds a General Assembly (GA). It is a preci
Link: https://www.europython-society.org/europython-society-general-assembly-2022/
It feels like yesterday that many of us were together in Dublin or online for EuroPython 2022. Each year, the current board of the EuroPython Society (EPS) holds a General Assembly (GA). It is a preci
EuroPython Society
EuroPython Society General Assembly 2022
All EPS members are invited to the 2022 GA at 17:00 - 19:00 CEST on Saturday 29 October 2022, held online to allow many members to engage with us.
Python for Beginners: Merge DataFrames in Python
Link: https://www.pythonforbeginners.com/basics/merge-dataframes-in-python
Python provides us with the pandas dataframes to handle tabular data. In this article, we will discuss how we can merge two dataframes in python.
How to Merge Two DataFrames in Python?
Suppose that we
Link: https://www.pythonforbeginners.com/basics/merge-dataframes-in-python
Python provides us with the pandas dataframes to handle tabular data. In this article, we will discuss how we can merge two dataframes in python.
How to Merge Two DataFrames in Python?
Suppose that we
PythonForBeginners.com
Merge DataFrames in Python - PythonForBeginners.com
Merge DataFrames in Python will help you improve your python skills with easy to follow examples and tutorials.
Real Python: ChatterBot: Build a Chatbot With Python
Link: https://realpython.com/build-a-chatbot-python-chatterbot/
Chatbots can provide real-time customer support and are therefore a valuable asset in many industries. When you understand the basics of the ChatterBot library, you can build and train a self-learning
Link: https://realpython.com/build-a-chatbot-python-chatterbot/
Chatbots can provide real-time customer support and are therefore a valuable asset in many industries. When you understand the basics of the ChatterBot library, you can build and train a self-learning
Realpython
ChatterBot: Build a Chatbot With Python – Real Python
Chatbots can help to provide real-time customer support and are a valuable asset in many industries. When you understand the basics of the ChatterBot library, you can build and train a self-learning chatbot with just a few lines of Python code.
Read the Docs: Read the Docs newsletter - October 2022
Link: https://blog.readthedocs.com/newsletter-october-2022/
September was exciting because a few members of our team finally got to gather in person.
Manuel, Benjamin, and Eric all attended Djangocon Europe in September,
and had lots of great discussions arou
Link: https://blog.readthedocs.com/newsletter-october-2022/
September was exciting because a few members of our team finally got to gather in person.
Manuel, Benjamin, and Eric all attended Djangocon Europe in September,
and had lots of great discussions arou
IslandT: Python Example — Write a python program which will save the user inputs into a Pickle file
Link: https://islandtropicaman.com/wp/2022/10/13/python-example-write-a-python-program-which-will-save-the-user-inputs-into-a-pickle-file/
A pickle file with the pickle extension is a binary file where all the user inputs will get saved into this file in binary format. The pickle built-in module will be required in order to use the pickl
Link: https://islandtropicaman.com/wp/2022/10/13/python-example-write-a-python-program-which-will-save-the-user-inputs-into-a-pickle-file/
A pickle file with the pickle extension is a binary file where all the user inputs will get saved into this file in binary format. The pickle built-in module will be required in order to use the pickl
Python Bytes: #305 Decorators need love too
Link: https://pythonbytes.fm/episodes/show/305/decorators-need-love-too
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=PWA4BJoBimY' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/305/decorators-need-love-too
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=PWA4BJoBimY' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
Decorators need love too
News and announcements from the Python community for the week of Oct 13th, 2022
Hynek Schlawack: How to Fix the set-output GitHub Actions Deprecation Warning
Link: https://hynek.me/til/set-output-deprecation-github-actions/
If you have a GitHub Actions workflow that sets an output using echo ::set-output key=value, you have started to see an unhelpful deprecation warning. Here’s how to fix it.
Link: https://hynek.me/til/set-output-deprecation-github-actions/
If you have a GitHub Actions workflow that sets an output using echo ::set-output key=value, you have started to see an unhelpful deprecation warning. Here’s how to fix it.
Hynek Schlawack
How to Fix the set-output GitHub Actions Deprecation Warning
If you have a GitHub Actions workflow that sets an output using echo ::set-output key=value, you have started to see an unhelpful deprecation warning. Here’s how to fix it.