Real Python: CPython Internals: Paperback Now Available!
Link: https://realpython.com/cpython-internals-paperback/
After almost two years of writing, reviewing, and testing, we’re delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is now available in paperback!
Are there certain p
Link: https://realpython.com/cpython-internals-paperback/
After almost two years of writing, reviewing, and testing, we’re delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is now available in paperback!
Are there certain p
Realpython
CPython Internals: Paperback Now Available! – Real Python
After almost two years of writing, reviewing, and testing, we're delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is available in paperback! In this article, you'll see how the book can help you take your Python skills…
Quansight Labs Blog: Working with pytest on PyTorch
Link: https://labs.quansight.org/blog/2021/06/pytest-pytorch/
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest-
Link: https://labs.quansight.org/blog/2021/06/pytest-pytorch/
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest-
Quansight Labs
Working with pytest on PyTorch
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest
Peter Bengtsson: An effective and immutable way to turn two Python lists into one
Link: https://www.peterbe.com/plog/an-effective-and-immutable-way-to-turn-two-python-lists-into-one
To combine 2 lists into 2 use `+`.
Link: https://www.peterbe.com/plog/an-effective-and-immutable-way-to-turn-two-python-lists-into-one
To combine 2 lists into 2 use `+`.
Peterbe
An effective and immutable way to turn two Python lists into one - Peterbe.com
To combine 2 lists into 2 use `+`.
Python Bytes: #239 No module named pythonbytes
Link: https://pythonbytes.fm/episodes/show/239/no-module-named-pythonbytes
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=7ibdW3Posyg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/239/no-module-named-pythonbytes
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=7ibdW3Posyg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
No module named pythonbytes
News and announcements from the Python community for the week of Jun 23rd, 2021
Daniel Roy Greenfeld: What's the Ultimate Reason for Working at Octopus Energy?
Link: https://daniel.feldroy.com/posts/whats-the-ultimate-reason-for-working-at-octopus-energy-part-2
On November 16, 2020, I started my first day of employment at Octopus Energy. A few days ago I discussed reasons why I enjoy my work and colleagues. In this article, I explain the ultimate reason I wo
Link: https://daniel.feldroy.com/posts/whats-the-ultimate-reason-for-working-at-octopus-energy-part-2
On November 16, 2020, I started my first day of employment at Octopus Energy. A few days ago I discussed reasons why I enjoy my work and colleagues. In this article, I explain the ultimate reason I wo
Daniel Roy Greenfeld
What's the Ultimate Reason for Working at Octopus Energy?
Wherin I conclude my discussion about why I work at Octopus Energy.
PyCharm: PyCharm 2021.2 EAP 2: Python Packages Installation From Custom Locations
Link: http://feedproxy.google.com/~r/Pycharm/~3/n92qam3nrmo/
The second EAP of PyCharm 2021.2 brings a lot of improvements, both platform-wide and Python-specific. Take a look at what we have new in store for Python 3.10 support, easy package installation, work
Link: http://feedproxy.google.com/~r/Pycharm/~3/n92qam3nrmo/
The second EAP of PyCharm 2021.2 brings a lot of improvements, both platform-wide and Python-specific. Take a look at what we have new in store for Python 3.10 support, easy package installation, work
JetBrains Blog
PyCharm 2021.2 EAP 2: Python Packages Installation From Custom Locations | The PyCharm Blog
The second EAP of PyCharm 2021.2 brings a lot of improvements, both platform-wide and Python-specific. Take a look at what we have new in store for Python 3.10 support, easy package installation, work
Python for Beginners: Decimal Module in Python
Link: https://www.pythonforbeginners.com/basics/decimal-module-in-python
Python has numeric data types like int, float and complex numbers but due to the machine dependent nature of floating point numbers, we need a more precise data type for calculations which demand hig
Link: https://www.pythonforbeginners.com/basics/decimal-module-in-python
Python has numeric data types like int, float and complex numbers but due to the machine dependent nature of floating point numbers, we need a more precise data type for calculations which demand hig
PythonForBeginners.com
Decimal Module in Python - PythonForBeginners.com
Decimal Module in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Stack Abuse: Styling PyQt6 Applications - Default and Custom QSS Stylesheets
Link: https://stackabuse.com/styling-pyqt6-applications-default-and-custom-qss-stylesheets
Introduction
In this guide, we'll take a look at how to style a PyQt application.
If you're unfamiliar with PyQt, read our Guide to Working with Python's PyQT Framework
We'll start with PyQt's defau
Link: https://stackabuse.com/styling-pyqt6-applications-default-and-custom-qss-stylesheets
Introduction
In this guide, we'll take a look at how to style a PyQt application.
If you're unfamiliar with PyQt, read our Guide to Working with Python's PyQT Framework
We'll start with PyQt's defau
Stack Abuse
Styling PyQt6 Applications - Default and Custom QSS Stylesheets
In this guide we'll take a look at how to style a PyQt application using the default and custom QSS stylesheets.
Mike Driscoll: Python 101: Exception Handling (Video)
Link: https://www.blog.pythonlibrary.org/2021/06/25/exception_handling_video/
In this video tutorial, you will learn how exception handling works in Python.
Specifically, you will learn the following:
Common exceptions
Handling exceptions
Raising exceptions
Examining exception
Link: https://www.blog.pythonlibrary.org/2021/06/25/exception_handling_video/
In this video tutorial, you will learn how exception handling works in Python.
Specifically, you will learn the following:
Common exceptions
Handling exceptions
Raising exceptions
Examining exception
Mouse Vs Python
Python 101: Exception Handling (Video)
In this video tutorial, you will learn how exception handling works in Python. Specifically, you will learn the following: Common exceptions Handling
Real Python: The Real Python Podcast – Episode #66: Practicing Python With CSV Files and Extracting Values With "filter()"
Link: https://realpython.com/podcasts/rpp/66/
Are you ready to practice your Python skills some more? There is a new set of practice problems prepared for you to tackle, and this time they're based on working with CSV files. This week on the show
Link: https://realpython.com/podcasts/rpp/66/
Are you ready to practice your Python skills some more? There is a new set of practice problems prepared for you to tackle, and this time they're based on working with CSV files. This week on the show
Realpython
Episode #66: Practicing Python With CSV Files and Extracting Values With "filter()" – The Real Python Podcast
Are you ready to practice your Python skills some more? There is a new set of practice problems prepared for you to tackle, and this time they're based on working with CSV files. This week on the show, David Amos is back, and he's brought another batch of…
EuroPython: EuroPython 2021: Free tickets for Python Core Developers
Link: https://blog.europython.eu/europython-2021-free-tickets-for-python-core-developers/
In 2019, we have set up the Guido van Rossum Core Developer Grant, to make it easy for Python Core Developers to attend EuroPython, but also to give something back to the core team and add a perk to m
Link: https://blog.europython.eu/europython-2021-free-tickets-for-python-core-developers/
In 2019, we have set up the Guido van Rossum Core Developer Grant, to make it easy for Python Core Developers to attend EuroPython, but also to give something back to the core team and add a perk to m
EuroPython Blog
EuroPython 2021: Free tickets for Python Core Developers
In 2019, we have set up the Guido van Rossum Core Developer Grant, to make it easy for Python Core Developers to attend EuroPython, but also to give something back to the core team and add a perk to make core development more attractive. If you are a core…
Mike Driscoll: Mouse vs Python has a Slack Channel
Link: https://www.blog.pythonlibrary.org/2021/06/25/mouse-vs-python-has-a-slack-channel/
This website now has a Slack channel. It’s free to join. No subscription required!
If you’d like to join, use the following link which is good for the next 30 days:
https://join.slack.com/t/mousevspyt
Link: https://www.blog.pythonlibrary.org/2021/06/25/mouse-vs-python-has-a-slack-channel/
This website now has a Slack channel. It’s free to join. No subscription required!
If you’d like to join, use the following link which is good for the next 30 days:
https://join.slack.com/t/mousevspyt
Mouse Vs Python
Mouse vs Python has a Slack Channel
This website now has a Slack channel. It's free to join. No subscription required! If you'd like to join, use the following link which is good for the
Talk Python to Me: #322: A path into data science
Link: https://talkpython.fm/episodes/show/322/a-path-into-data-science
Are you interested in getting ahead in data science? On this episode, you'll meet Sanyam Bhutani who studied computer science but found his education didn't prepare him for getting a data science-focu
Link: https://talkpython.fm/episodes/show/322/a-path-into-data-science
Are you interested in getting ahead in data science? On this episode, you'll meet Sanyam Bhutani who studied computer science but found his education didn't prepare him for getting a data science-focu
talkpython.fm
A path into data science
Are you interested in getting ahead in data science? On this episode, you'll meet Sanyam Bhutani who studied computer science but found his education didn't prepare him for getting a data science-focused job. That's where he started his own path of self-education…
Weekly Python StackOverflow Report: (cclxxxi) stackoverflow python report
Link: http://python-weekly.blogspot.com/2021/06/cclxxxi-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-06-26 15:09:30 GMTList containing only every second second pair of
Link: http://python-weekly.blogspot.com/2021/06/cclxxxi-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-06-26 15:09:30 GMTList containing only every second second pair of
Blogspot
(cclxxxi) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2021...
Simple is Better Than Complex: How to Start a Production-Ready Django Project
Link: https://simpleisbetterthancomplex.com/tutorial/2021/06/27/how-to-start-a-production-ready-django-project.html
In this tutorial I’m going to show you how I usually start and organize a new Django project nowadays. I’ve tried many
different configurations and ways to organize the project, but for the past 4 yea
Link: https://simpleisbetterthancomplex.com/tutorial/2021/06/27/how-to-start-a-production-ready-django-project.html
In this tutorial I’m going to show you how I usually start and organize a new Django project nowadays. I’ve tried many
different configurations and ways to organize the project, but for the past 4 yea
Simple is Better Than Complex
How to Start a Production-Ready Django Project
In this tutorial I’m going to show you how I usually start and organize a new Django project nowadays. I’ve tried manydifferent configurations and ways to organize the project, but for the past 4 y...
Mike Driscoll: PyDev of the Week: Benjy Weinberger
Link: https://www.blog.pythonlibrary.org/2021/06/28/pydev-of-the-week-benjy-weinberger/
This week we welcome Benjy Weinberger (@benjy) as our PyDev of the Week! Benjy works on the Pants build system. He is also the co-founder of Toolchain.
You can catch up with Benjy over on GitHub. Let’
Link: https://www.blog.pythonlibrary.org/2021/06/28/pydev-of-the-week-benjy-weinberger/
This week we welcome Benjy Weinberger (@benjy) as our PyDev of the Week! Benjy works on the Pants build system. He is also the co-founder of Toolchain.
You can catch up with Benjy over on GitHub. Let’
Mouse Vs Python
PyDev of the Week: Benjy Weinberger
Gain practical, real-world Python skills with our resources and pathway
Lucas Cimon: World map of an open-source project contributors
Link: https://chezsoi.org/lucas/blog/world-map-of-an-open-source-project-contributors.html
I have been amazed recently at the diversity of contributors on the fpdf2 project,
coming from all around the world!
Then I thought it would be nice to visualize this diversity by building a world map
Link: https://chezsoi.org/lucas/blog/world-map-of-an-open-source-project-contributors.html
I have been amazed recently at the diversity of contributors on the fpdf2 project,
coming from all around the world!
Then I thought it would be nice to visualize this diversity by building a world map
Ludochaordic
World map of an open-source project contributors
I have been amazed recently at the diversity of contributors on the fpdf2 project, coming from all around the world! Then I thought it would be nice to visualize this diversity by building a world map of all contributors locations. There it is: Click on the…
death and gravity: Why I wrote my own SQL query builder
Link: https://death.andgravity.com/own-query-builder
Previously
This is the third article in a series about
writing an SQL query builder in 150 lines of Python,
why I wrote it, how I thought about it, and the decisions I had to make.
Today, we'll talk a
Link: https://death.andgravity.com/own-query-builder
Previously
This is the third article in a series about
writing an SQL query builder in 150 lines of Python,
why I wrote it, how I thought about it, and the decisions I had to make.
Today, we'll talk a
death and gravity
Why I wrote my own SQL query builder (in Python)
This is the third article in a series about writing an SQL query builder in 150 lines of Python. Here, I talk about why I decided to write my own, the alternatives I considered, why I didn't use an existing library, and how I knew it wouldn't become a maintenance…
Python⇒Speed: Measuring the memory usage of a Pandas DataFrame
Link: https://pythonspeed.com/articles/pandas-dataframe-series-memory-usage/
How much memory are your Pandas DataFrame or Series using?
Pandas provides an API for measuring this information, but a variety of implementation details means the results can be confusing or misleadi
Link: https://pythonspeed.com/articles/pandas-dataframe-series-memory-usage/
How much memory are your Pandas DataFrame or Series using?
Pandas provides an API for measuring this information, but a variety of implementation details means the results can be confusing or misleadi
Python⇒Speed
Measuring the memory usage of a Pandas DataFrame
Learn how to accurately measure memory usage of your Pandas DataFrame or Series.
Quansight Labs Blog: Distributed Training Made Easy with PyTorch-Ignite
Link: https://labs.quansight.org/blog/2021/06/distributed-made-easy-with-ignite/
Authors: François Cokelaer,
Priyansi, Sylvain
Desroziers, Victor
Fomin
Writing agnostic
distributed
code that
supports different platforms, hardware configurations (GPUs, TPUs) and
communication fram
Link: https://labs.quansight.org/blog/2021/06/distributed-made-easy-with-ignite/
Authors: François Cokelaer,
Priyansi, Sylvain
Desroziers, Victor
Fomin
Writing agnostic
distributed
code that
supports different platforms, hardware configurations (GPUs, TPUs) and
communication fram
Quansight Labs
Distributed Training Made Easy with PyTorch-Ignite
Distributed code with PyTorch-Ignite
Real Python: Reverse Python Lists: Beyond .reverse() and reversed()
Link: https://realpython.com/python-reverse-list/
Are you diving deeper into Python lists and wanting to learn about different ways to reverse them? If so, then this tutorial is for you. Here, you’ll learn about a few Python tools and techniques that
Link: https://realpython.com/python-reverse-list/
Are you diving deeper into Python lists and wanting to learn about different ways to reverse them? If so, then this tutorial is for you. Here, you’ll learn about a few Python tools and techniques that
Realpython
Reverse Python Lists: Beyond .reverse() and reversed() – Real Python
In this step-by-step tutorial, you'll learn about Python's tools and techniques to work with lists in reverse order. You'll also learn how to reverse your list by hand.