EuroPython: EuroPython 2020: Going virtual
EuroPython 2021: Dublin, Ireland
Link: https://blog.europython.eu/post/612826526375919616
In our blog post on the COVID-19 last week, we were still hopeful that the situation would improve in time for the event in July. The last few days have shown us that we need to have a more realistic
EuroPython 2021: Dublin, Ireland
Link: https://blog.europython.eu/post/612826526375919616
In our blog post on the COVID-19 last week, we were still hopeful that the situation would improve in time for the event in July. The last few days have shown us that we need to have a more realistic
blog.europython.eu
EuroPython Blog
EuroPython 2020: Going virtual EuroPython 2021: Dublin, Ireland In our blog post on the COVID-19 last week, we were still hopeful that the situation would improve in time for the event in July. The...
RMOTR: Learn Data Science by Analyzing COVID-19
Link: https://blog.rmotr.com/learn-data-science-by-analyzing-covid-19-27a063d7f442?source=rss----2e274f91448--python
Note: In light of the current situation, RMOTR will provide a 2 week free of charge trial period, to help people improve their programming and data management skills while staying home. Read more in t
Link: https://blog.rmotr.com/learn-data-science-by-analyzing-covid-19-27a063d7f442?source=rss----2e274f91448--python
Note: In light of the current situation, RMOTR will provide a 2 week free of charge trial period, to help people improve their programming and data management skills while staying home. Read more in t
Medium
Learn Data Science by Analyzing COVID-19
Understand how Data Scientists contribute during a pandemic by analyzing COVID-19
Fabio Zadrozny: How is frame evaluation used in pydevd?
Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/7V88WvFfQzM/how-is-frame-evaluation-used-in-pydevd.html
First some background in frame evaluation:Since Python 3.6, CPython has a mechanism which allows clients to override how it evaluates frames. This is done by changing PyThreadState.interp.eval_frame t
Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/7V88WvFfQzM/how-is-frame-evaluation-used-in-pydevd.html
First some background in frame evaluation:Since Python 3.6, CPython has a mechanism which allows clients to override how it evaluates frames. This is done by changing PyThreadState.interp.eval_frame t
Blogspot
How is frame evaluation used in pydevd?
First some background in frame evaluation: Since Python 3.6, CPython has a mechanism which allows clients to override how it evaluates fra...
Continuum Analytics Blog: How We’re Responding to COVID-19
Link: https://www.anaconda.com/how-were-responding-to-covid-19/
To our community of customers, partners, contributors, and friends: We are all facing a dynamic and difficult situation in the face of the COVID-19 pandemic. Our families, friends, customers, employee
Link: https://www.anaconda.com/how-were-responding-to-covid-19/
To our community of customers, partners, contributors, and friends: We are all facing a dynamic and difficult situation in the face of the COVID-19 pandemic. Our families, friends, customers, employee
Anaconda
How We're Responding to COVID-19 - Anaconda
During this time, we are prioritizing the safety of our employees, customers, and the communities in which we operate.
Real Python: Python Scope & the LEGB Rule: Resolving Names in Your Code
Link: https://realpython.com/python-scope-legb-rule/
The concept of scope rules how variables and names are looked up in your code. It determines the visibility of a variable within the code. The scope of a name or variable depends on the place in your
Link: https://realpython.com/python-scope-legb-rule/
The concept of scope rules how variables and names are looked up in your code. It determines the visibility of a variable within the code. The scope of a name or variable depends on the place in your
Realpython
Python Scope and the LEGB Rule: Resolving Names in Your Code – Real Python
Understanding Python's variable scope and the LEGB rule helps you avoid name collisions and unexpected behavior. Learn to manage scope and write better code.
PyBites: How to Debug a Hanging Test Using pytest
Link: https://pybit.es/pytest-timeout.html
Today a wanted to share a neat trick that might save you some headache: debugging a hanging test.
Setup
Let's write some really simple (contrived) code to test:
from time import sleep
def call_api():
Link: https://pybit.es/pytest-timeout.html
Today a wanted to share a neat trick that might save you some headache: debugging a hanging test.
Setup
Let's write some really simple (contrived) code to test:
from time import sleep
def call_api():
pybit.es
How to Debug a Hanging Test Using pytest - PyBites
Today a wanted to share a neat trick that might save you some headache: debugging a hanging test. Setup Let's write some really simple (contrived) code to test: from time import sleep def...
PyCharm: PyCharm 2019.3.4
Link: http://feedproxy.google.com/~r/Pycharm/~3/mc5w4KgW2QY/
We’ve fixed a couple of issues in PyCharm 2019.3. You can get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, or by downloading the new version from our website.
In this v
Link: http://feedproxy.google.com/~r/Pycharm/~3/mc5w4KgW2QY/
We’ve fixed a couple of issues in PyCharm 2019.3. You can get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, or by downloading the new version from our website.
In this v
PyCharm Blog
PyCharm 2019.3.4
We’ve fixed a couple of issues in PyCharm 2019.3. You can get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, or by downloading the new version from our website. I…
Erik Marsja: How to use Pandas Scatter Matrix (Pair Plot) to Visualize Trends in Data
Link: https://www.marsja.se/pandas-scatter-matrix-pair-plot/?utm_source=rss&utm_medium=rss&utm_campaign=pandas-scatter-matrix-pair-plot
The post How to use Pandas Scatter Matrix (Pair Plot) to Visualize Trends in Data appeared first on Erik Marsja.
In this Python data visualization tutorial, we will work with Pandas scatter_matrix met
Link: https://www.marsja.se/pandas-scatter-matrix-pair-plot/?utm_source=rss&utm_medium=rss&utm_campaign=pandas-scatter-matrix-pair-plot
The post How to use Pandas Scatter Matrix (Pair Plot) to Visualize Trends in Data appeared first on Erik Marsja.
In this Python data visualization tutorial, we will work with Pandas scatter_matrix met
Erik Marsja
How to use Pandas Scatter Matrix (Pair Plot) to Visualize Trends in Data
In this post, we will use Pandas scatter_matrix to create pair plots in Python. There are 4 examples and a Jupyter Notebook to download.
PyBites: 4 Common Mistakes When Learning Python and Programming
Link: https://pybit.es/python-learning-mistakes.html
How are you progressing with your Python? What could be holding you back?
I gave it some thought and identified 4 issues we commonly see that hold people back from becoming a proficient Pythonista and
Link: https://pybit.es/python-learning-mistakes.html
How are you progressing with your Python? What could be holding you back?
I gave it some thought and identified 4 issues we commonly see that hold people back from becoming a proficient Pythonista and
PyBites
4 Common Mistakes When Learning Python And Programming - PyBites
How are you progressing with your Python? What could be holding you back? I gave it some thought and identified 4 issues we commonly see that hold people back from becoming a proficient Pythonista and programmer.
Caktus Consulting Group: What to do About Email: How to Extract Data from Microsoft PST Files
Link: http://www.caktusgroup.com/blog/2020/03/19/email-extract-data-microsoft-pst-files/
In my previous line of work as an archivist, the question of what to do about email archives was an ongoing and deeply-considered topic. Email is everywhere. Yes, even Gen Z and millennials use it, d
Link: http://www.caktusgroup.com/blog/2020/03/19/email-extract-data-microsoft-pst-files/
In my previous line of work as an archivist, the question of what to do about email archives was an ongoing and deeply-considered topic. Email is everywhere. Yes, even Gen Z and millennials use it, d
Caktusgroup
What to do About Email: How to Extract Data from Microsoft PST Files | Caktus Group
Accessing emails stored in a Microsoft PST format can be tricky. In this blog post, learn about an open-source tool that makes extracting email from PSTs a lot easier.
Matt Layman: Onboarding - Building SaaS #48
Link: https://www.mattlayman.com/building-saas/onboarding/
In this episode, we did some design work to plan out the onboarding flow for new users. I spoke through my design process, outlined what a new user will need to do to succeed, wrote down the plan in G
Link: https://www.mattlayman.com/building-saas/onboarding/
In this episode, we did some design work to plan out the onboarding flow for new users. I spoke through my design process, outlined what a new user will need to do to succeed, wrote down the plan in G
Matt Layman
Onboarding - Building SaaS #48
In this episode, we did some design work to plan out the onboarding flow for new users. I spoke through my design process, outlined what a new user will need to do to succeed, wrote down the plan in GitHub issues, then started to implement that flow.
Ruslan Spivak: Let’s Build A Simple Interpreter. Part 19: Nested Procedure Calls
Link: https://ruslanspivak.com/lsbasi-part19/
“What I cannot create, I do not understand.” — Richard Feynman
As I promised you last time, today we’re going to expand on the material covered in the previous article and talk about executing neste
Link: https://ruslanspivak.com/lsbasi-part19/
“What I cannot create, I do not understand.” — Richard Feynman
As I promised you last time, today we’re going to expand on the material covered in the previous article and talk about executing neste
Ruslan's Blog
Let’s Build A Simple Interpreter. Part 19: Nested Procedure Calls
What I cannot create, I do not understand. —- Richard Feynman
Python Bytes: #173 You test deserves a fluent flavor
Link: https://pythonbytes.fm/episodes/show/173/you-test-deserves-a-fluent-flavor
<p>Sponsored by Datadog: <a href="http://pythonbytes.fm/datadog"><strong>pythonbytes.fm/datadog</strong></a></p>
<p><strong>Brian #1:</strong> <a href="https://hodovi.ch/blog/advanced-usage-python-re
Link: https://pythonbytes.fm/episodes/show/173/you-test-deserves-a-fluent-flavor
<p>Sponsored by Datadog: <a href="http://pythonbytes.fm/datadog"><strong>pythonbytes.fm/datadog</strong></a></p>
<p><strong>Brian #1:</strong> <a href="https://hodovi.ch/blog/advanced-usage-python-re
pythonbytes.fm
You test deserves a fluent flavor
News and announcements from the Python community for the week of Mar 19th, 2020
PyCharm: PyCharm 2020.1 Beta
Link: http://feedproxy.google.com/~r/Pycharm/~3/xpknGvKuQUw/
We have a new Beta version of PyCharm that can now be downloaded from our website
This Beta brings us closer to the 2020.1 release: we’re working on polishing everything to get it ready, and this week
Link: http://feedproxy.google.com/~r/Pycharm/~3/xpknGvKuQUw/
We have a new Beta version of PyCharm that can now be downloaded from our website
This Beta brings us closer to the 2020.1 release: we’re working on polishing everything to get it ready, and this week
PyCharm Blog
PyCharm 2020.1 Beta
We have a new Beta version of PyCharm that can now be downloaded from our website. This Beta brings us closer to the 2020.1 release: we’re working on polishing everything to get it ready, and…
Python 4 Kids: Python is No Good for Mortality Rates
Link: https://python4kids.brendanscott.com/2020/03/20/python-is-no-good-for-mortality-rates/
Here we are at the uptick in the Covid 19 pandemic. There are many sources of data which list infections and deaths as a result of the virus. It’s very tempting to want to put your Python skills to us
Link: https://python4kids.brendanscott.com/2020/03/20/python-is-no-good-for-mortality-rates/
Here we are at the uptick in the Covid 19 pandemic. There are many sources of data which list infections and deaths as a result of the virus. It’s very tempting to want to put your Python skills to us
Python Tutorials for Kids 13+
Python is No Good for Mortality Rates
Here we are at the uptick in the Covid 19 pandemic. There are many sources of data which list infections and deaths as a result of the virus. It’s very tempting to want to put your Python ski…
Python Engineering at Microsoft: Python in Visual Studio Code – March 2020 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-march-2020-release/
We are pleased to announce that the March 2020 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it direc
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-march-2020-release/
We are pleased to announce that the March 2020 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it direc
Python
Python in Visual Studio Code – March 2020 Release
We are pleased to announce that the March 2020 release of the Python Extension for Visual Studio Code is now available. In this release we closed a total of 66 issues and it includes a brand new debugger and an easier configuration experience for attaching…
Gocept Weblog: Zope May Sprint
Link: https://blog.gocept.com/2020/02/28/zope-may-sprint/
Earl Zope has settled down for a good while in Python 3 wonderland. He made friends with the inhabitants and other immigrants. He enjoys his new live.
The sunset of his original homelands took place
Link: https://blog.gocept.com/2020/02/28/zope-may-sprint/
Earl Zope has settled down for a good while in Python 3 wonderland. He made friends with the inhabitants and other immigrants. He enjoys his new live.
The sunset of his original homelands took place
gocept blog
Zope May Sprint
Earl Zope has settled down for a good while in Python 3 wonderland. He made friends with the inhabitants and other immigrants. He enjoys his new live. The sunset of his original homelands took plac…
Python Anywhere: COVID-19 update: PythonAnywhere is now all-remote
Link: https://blog.pythonanywhere.com/188/
Scary times. We hope everyone reading this is well and keeping safe!
We thought it would be a good idea to tell you how we're managing the current crisis at PythonAnywhere. We switched over to remote
Link: https://blog.pythonanywhere.com/188/
Scary times. We hope everyone reading this is well and keeping safe!
We thought it would be a good idea to tell you how we're managing the current crisis at PythonAnywhere. We switched over to remote
PyCon: PyCon US 2020 in Pittsburgh, Pennsylvania is cancelled
Link: https://pycon.blogspot.com/2020/03/pycon-us-2020-in-pittsburgh.html
The PSF’s priority is the health and safety of the community and the COVID-19 (Coronavirus) pandemic has made it unsafe to hold PyCon US this year.Recently, the United States and the State of Pennsylv
Link: https://pycon.blogspot.com/2020/03/pycon-us-2020-in-pittsburgh.html
The PSF’s priority is the health and safety of the community and the COVID-19 (Coronavirus) pandemic has made it unsafe to hold PyCon US this year.Recently, the United States and the State of Pennsylv
Blogspot
PyCon US 2020 in Pittsburgh, Pennsylvania is cancelled
The PSF’s priority is the health and safety of the community and the COVID-19 (Coronavirus) pandemic has made it unsafe to hold PyCon US th...
Django Weblog: DjangoCon Europe 2020 postponed to September
Link: https://www.djangoproject.com/weblog/2020/mar/20/djangocon-europe-2020-postponed-september/
It is with a sincere heart that we have decided to postpone DjangoCon Europe 2020 to September 16-20.
As you might be aware, conferences are being cancelled worldwide. We still have hope, and before t
Link: https://www.djangoproject.com/weblog/2020/mar/20/djangocon-europe-2020-postponed-september/
It is with a sincere heart that we have decided to postpone DjangoCon Europe 2020 to September 16-20.
As you might be aware, conferences are being cancelled worldwide. We still have hope, and before t