EuroPython Society: Sharing our research and licenses for going online with Python events
Link: https://www.europython-society.org/post/617463429296472064
In March 2020, we had to make a tough decision on whether to cancel EuroPython 2020 or run it online. Since we did not want to lose continuity and all the work we had already put into the in-person ev
Link: https://www.europython-society.org/post/617463429296472064
In March 2020, we had to make a tough decision on whether to cancel EuroPython 2020 or run it online. Since we did not want to lose continuity and all the work we had already put into the in-person ev
www.europython-society.org
EuroPython Society
Sharing our research and licenses for going online with Python events In March 2020, we had to make a tough decision on whether to cancel EuroPython 2020 or run it online. Since we did not want to...
Reuven Lerner: Python for non-programmers continues!
Link: https://lerner.co.il/2020/05/07/python-for-non-programmers-continues/
The next session of my free, weekly, live “Python for non-programmers” course continues tomorrow, on May 8th.
You can sign up at https://PythonForNonProgrammers.com/. More than 1,700 people from ar
Link: https://lerner.co.il/2020/05/07/python-for-non-programmers-continues/
The next session of my free, weekly, live “Python for non-programmers” course continues tomorrow, on May 8th.
You can sign up at https://PythonForNonProgrammers.com/. More than 1,700 people from ar
Reuven Lerner
Python for non-programmers continues!
The next session of my free, weekly, live "Python for non-programmers" course continues tomorrow, on
Erik Marsja: Seaborn Line Plots: A Detailed Guide with Examples (Multiple Lines)
Link: https://www.marsja.se/seaborn-line-plots-multiple/?utm_source=rss&utm_medium=rss&utm_campaign=seaborn-line-plots-multiple
The post Seaborn Line Plots: A Detailed Guide with Examples (Multiple Lines) appeared first on Erik Marsja.
In this Python data visualization tutorial, we will learn how to create line plots with Seab
Link: https://www.marsja.se/seaborn-line-plots-multiple/?utm_source=rss&utm_medium=rss&utm_campaign=seaborn-line-plots-multiple
The post Seaborn Line Plots: A Detailed Guide with Examples (Multiple Lines) appeared first on Erik Marsja.
In this Python data visualization tutorial, we will learn how to create line plots with Seab
Erik Marsja
Seaborn Line Plots: A Detailed Guide with Examples (Multiple Lines)
A detailed guide to Seaborn line plots, including plotting multiple lines, & a downloadable Jupyter Notebook with all code examples.
Reuven Lerner: Making sense of generators, coroutines, and “yield from” in Python
Link: https://lerner.co.il/2020/05/08/making-sense-of-generators-coroutines-and-yield-from-in-python/
Consider the following (ridiculous) Python function:
def myfunc():
return 1
return 2
return 3
I can define the function, and then run it. What do I get back?
>>> myfunc()
1
Not surprisingl
Link: https://lerner.co.il/2020/05/08/making-sense-of-generators-coroutines-and-yield-from-in-python/
Consider the following (ridiculous) Python function:
def myfunc():
return 1
return 2
return 3
I can define the function, and then run it. What do I get back?
>>> myfunc()
1
Not surprisingl
Reuven Lerner
Making sense of generators, coroutines, and "yield from" in Python
Confused by Python's generators, coroutines, and "yield from" syntax? You're not alone! Learn what they mean, how they work, and how you might use them.
Real Python: The Real Python Podcast – Episode #8: Docker + Python for Data Science and Machine Learning
Link: https://realpython.com/podcasts/rpp/8/
Docker is a common tool for Python developers creating and deploying applications, but what do you need to know if you want to use Docker for data science and machine learning? What are the best pract
Link: https://realpython.com/podcasts/rpp/8/
Docker is a common tool for Python developers creating and deploying applications, but what do you need to know if you want to use Docker for data science and machine learning? What are the best pract
Realpython
Episode #8: Docker + Python for Data Science and Machine Learning – The Real Python Podcast
Docker is a common tool for Python developers creating and deploying applications, but what do you need to know if you want to use Docker for data science and machine learning? What are the best practices if you want to start using containers for your scientific…
PyCharm: PyCharm 2019.3.5
Link: http://feedproxy.google.com/~r/Pycharm/~3/zds5Zn3t0CM/
If you currently run PyCharm version 2019.3, this release comes with multiple bug fixes to improve your experience. Get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, or
Link: http://feedproxy.google.com/~r/Pycharm/~3/zds5Zn3t0CM/
If you currently run PyCharm version 2019.3, this release comes with multiple bug fixes to improve your experience. Get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, or
PyCharm Blog
PyCharm 2019.3.5
If you currently run PyCharm version 2019.3, this release comes with multiple bug fixes to improve your experience. Get it from within PyCharm (Help | Check for Updates), using JetBrains Toolbox, o…
Python Bytes: #180 Transactional file IO with Python and safer
Link: https://pythonbytes.fm/episodes/show/180/transactional-file-io-with-python-and-safer
<p>Sponsored by <strong>DigitalOcean</strong>: <a href="https://pythonbytes.fm/digitalocean"><strong>pythonbytes.fm/digitalocean</strong></a> - $100 credit for new users to build something awesome.</p
Link: https://pythonbytes.fm/episodes/show/180/transactional-file-io-with-python-and-safer
<p>Sponsored by <strong>DigitalOcean</strong>: <a href="https://pythonbytes.fm/digitalocean"><strong>pythonbytes.fm/digitalocean</strong></a> - $100 credit for new users to build something awesome.</p
pythonbytes.fm
Transactional file IO with Python and safer
News and announcements from the Python community for the week of May 8th, 2020
EuroPython: EuroPython 2020: Second call for proposals (CFP)
Link: https://blog.europython.eu/post/617552560206872576
After participating in several other online events in Europe, we found that there is a lot of interest in these events from other time zones as well. This is a real advantage of running an online even
Link: https://blog.europython.eu/post/617552560206872576
After participating in several other online events in Europe, we found that there is a lot of interest in these events from other time zones as well. This is a real advantage of running an online even
blog.europython.eu
EuroPython Blog
EuroPython 2020: Second call for proposals (CFP) After participating in several other online events in Europe, we found that there is a lot of interest in these events from other time zones as well....
Test and Code: 112: Six Principles of Readable Tests - David Seddon
Link: https://testandcode.com/112
"Code is read much more often than it is written." - Guido van Rossum
This is true for both production code and test code.
When you are trying to understand why a test is failing, you'll be very grate
Link: https://testandcode.com/112
"Code is read much more often than it is written." - Guido van Rossum
This is true for both production code and test code.
When you are trying to understand why a test is failing, you'll be very grate
Test & Code
Test & Code 112: Six Principles of Readable Tests - David Seddon
"Code is read much more often than it is written." - Guido van Rossum
This is true for both production code and test code.
David Seddon came up with 6 principles to help us write more readable tests.
We discuss these, as well as more benefits of readable…
This is true for both production code and test code.
David Seddon came up with 6 principles to help us write more readable tests.
We discuss these, as well as more benefits of readable…
Sandro Tosi: It's a waiting game... but just how long we gotta wait?
Link: http://sandrotosi.blogspot.com/2020/05/its-waiting-game-but-just-how-long-we.html
While waiting for my priority date to become current, and with enough "quarantine time" on my hand, i just come up with a very simple Python tool to parse the USCIS Visa Bulletin to gather some data f
Link: http://sandrotosi.blogspot.com/2020/05/its-waiting-game-but-just-how-long-we.html
While waiting for my priority date to become current, and with enough "quarantine time" on my hand, i just come up with a very simple Python tool to parse the USCIS Visa Bulletin to gather some data f
Blogspot
It's a waiting game... but just how long we gotta wait?
While waiting for my priority date to become current, and with enough "quarantine time" on my hand, i just come up with a very simple Python...
"Coder's Cat": Understanding Recursion and Continuation with Python
Link: https://coderscat.com/understanding-recursion-and-continuation-with-python
Figure 1: Photo by Amelie & Niklas Ohlrogge on Unsplash
In the article How To Learn All Programming Languages, I explained learning programming language concepts is an effective way to master all
Link: https://coderscat.com/understanding-recursion-and-continuation-with-python
Figure 1: Photo by Amelie & Niklas Ohlrogge on Unsplash
In the article How To Learn All Programming Languages, I explained learning programming language concepts is an effective way to master all
Coder's Cat
Understanding Recursion and Continuation with Python
Recursion, continuation and continuation-passing style are essential ideas for functional programming languages. Have an understanding of them will help much in knowing how programming languag...
Weekly Python StackOverflow Report: (ccxxvii) stackoverflow python report
Link: http://python-weekly.blogspot.com/2020/05/ccxxvii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-05-09 14:31:21 GMTIs it possible to write a luigi wrapper task tha
Link: http://python-weekly.blogspot.com/2020/05/ccxxvii-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-05-09 14:31:21 GMTIs it possible to write a luigi wrapper task tha
Blogspot
(ccxxvii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2020...
Naomi Ceder: Stepping back…
Link: https://learnpython.wordpress.com/2020/05/09/stepping-back/
As the PSF election cycle begins, I’d like to share the news that I won’t be running for re-election to the board of directors.
If you care for a fuller announcement and explanation you can find it
Link: https://learnpython.wordpress.com/2020/05/09/stepping-back/
As the PSF election cycle begins, I’d like to share the news that I won’t be running for re-election to the board of directors.
If you care for a fuller announcement and explanation you can find it
Learn Python
Stepping back…
As the PSF election cycle begins, I’d like to share the news that I won’t be running for re-election to the board of directors. If you care for a fuller announcement and explanation you…
"Menno's Musings": Better Emacs Config: use-package
Link: http://menno.io/posts/use-package/
use-package is an
Emacs package which allows
packages to be loaded declaratively. It's been around for ages and
I've seen it used in other people's configurations, but I've only
recently paid some rea
Link: http://menno.io/posts/use-package/
use-package is an
Emacs package which allows
packages to be loaded declaratively. It's been around for ages and
I've seen it used in other people's configurations, but I've only
recently paid some rea
menno.io
Better Emacs Config: use-package
Highly irregular postings about technology and life
Python Circle: atexit with example
Link: https://www.pythoncircle.com/post/714/atexit-with-example/
There is an option in python where you can execute a function when the interpreter terminates. Here we will see how to use atexit module.
Link: https://www.pythoncircle.com/post/714/atexit-with-example/
There is an option in python where you can execute a function when the interpreter terminates. Here we will see how to use atexit module.
Python Circle
atexit with example
There is an option in python where you can execute a function when the interpreter terminates. Here we will see how to use atexit module.
Will McGugan: Real working hyperlinks in the terminal with Rich
Link: https://www.willmcgugan.com/blog/tech/post/real-working-hyperlinks-in-the-terminal-with-rich/
Since releasing Rich 1.0.0 I've discovered that terminals support hyperlinks. And I don't mean the helpful highlighting of URLs that most terminals do, I mean actual HTML-like hyperlinks that launch a
Link: https://www.willmcgugan.com/blog/tech/post/real-working-hyperlinks-in-the-terminal-with-rich/
Since releasing Rich 1.0.0 I've discovered that terminals support hyperlinks. And I don't mean the helpful highlighting of URLs that most terminals do, I mean actual HTML-like hyperlinks that launch a
Will McGugan Tech
Real working hyperlinks in the terminal with Rich
Since releasing Rich 1.0.0 I've discovered that terminals support hyperlinks. And I don't mean the helpful highlighting of URLs that most terminals do, I mean actual HTML-like hyperlinks that launch a browser. This was news to me, as I've never seen this…
Abhijeet Pal: How To Upload Images With Django
Link: https://djangocentral.com/uploading-images-with-django/
One of the most common requirement in any modern web application is the ability to take images or pictures from the users as input and save them on the server however Letting users upload files can ha
Link: https://djangocentral.com/uploading-images-with-django/
One of the most common requirement in any modern web application is the ability to take images or pictures from the users as input and save them on the server however Letting users upload files can ha
Djangocentral
How To Upload Images With Django
One of the most common requirement in any modern web application is the ability to take images or pictures from the users as input and save them on the serve
EuroPython: EuroPython 2020: First part of the program available
Link: https://blog.europython.eu/post/617740494311718912
Our program work group (WG) has been working hard over the last week to select the first batch of sessions for EuroPython 2020, based on your talk voting and our diversity criteria.We’re now happy to
Link: https://blog.europython.eu/post/617740494311718912
Our program work group (WG) has been working hard over the last week to select the first batch of sessions for EuroPython 2020, based on your talk voting and our diversity criteria.We’re now happy to
blog.europython.eu
EuroPython Blog
EuroPython 2020: First part of the program available Our program work group (WG) has been working hard over the last week to select the first batch of sessions for EuroPython 2020, based on your talk...
Python Software Foundation: CPython on Mobile platforms - Python Language Summit 2020
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ssTeWC39RJ0/cpython-on-mobile-platforms.html
"We've got very big news on Android," Russell Keith-Magee told the Language Summit. "We're close to having a full set of BeeWare tools that can run on Android."
The BeeWare project aims to let progr
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/ssTeWC39RJ0/cpython-on-mobile-platforms.html
"We've got very big news on Android," Russell Keith-Magee told the Language Summit. "We're close to having a full set of BeeWare tools that can run on Android."
The BeeWare project aims to let progr
Blogspot
CPython on Mobile platforms - Python Language Summit 2020
"We've got very big news on Android," Russell Keith-Magee told the Language Summit. "We're close to having a full set of BeeWare tools that...
The Three of Wands: Building Pyrseia III: Server Middleware, Client Senders, CLI and InApp Validators
Link: https://threeofwands.com/building-pyrseia-iii-server-middleware-and-inapp-validators/
This is the third article in the Pyrseia series. The others are:
Building Pyrseia I: The Idea
Building Pyrseia II: Fleshing out Clients and Servers
If you want to follow along with the code, this ar
Link: https://threeofwands.com/building-pyrseia-iii-server-middleware-and-inapp-validators/
This is the third article in the Pyrseia series. The others are:
Building Pyrseia I: The Idea
Building Pyrseia II: Fleshing out Clients and Servers
If you want to follow along with the code, this ar
The Three of Wands
Building Pyrseia III: Server Middleware, Client Senders, CLI and InApp Validators
This is the third article in the Pyrseia series. The others are: Building Pyrseia I: The Idea Building Pyrseia II: Fleshing out Clients and Servers If you want to follow along with the code, this article refers to commit 5abf2eda9be06b7417395a50ef676454bbd8f667.…
Mike Driscoll: PyDev of the Week: Jan Giacomelli
Link: https://www.blog.pythonlibrary.org/2020/05/11/pydev-of-the-week-jan-giacomelli/
This week we welcome Jan Giacomelli (@jangiacomelli) as our PyDev of the Week. Jan is an entrepreneur and blogs about Python. You can see what projects Jan contributes to over on Github.
Let’s spend a
Link: https://www.blog.pythonlibrary.org/2020/05/11/pydev-of-the-week-jan-giacomelli/
This week we welcome Jan Giacomelli (@jangiacomelli) as our PyDev of the Week. Jan is an entrepreneur and blogs about Python. You can see what projects Jan contributes to over on Github.
Let’s spend a
The Mouse Vs. The Python
PyDev of the Week: Jan Giacomelli - The Mouse Vs. The Python
This week we welcome Jan Giacomelli (@jangiacomelli) as our PyDev of the Week. Jan is an entrepreneur and blogs about Python. You can see what projects Jan contributes to over on Github. Let’s spend a few minutes and get to know Jan better! Can you tell us…