Reuven Lerner: Last chance: Weekly Python Exercise B3 starts tomorrow!
Link: https://lerner.co.il/2020/10/26/last-chance-weekly-python-exercise-b3-starts-tomorrow/
Want to improve your Python skills? Looking for a way to practice on a regular basis, backed up by a community of learners?
Look no more: A new advanced-level cohort of Weekly Python Exercise is star
Link: https://lerner.co.il/2020/10/26/last-chance-weekly-python-exercise-b3-starts-tomorrow/
Want to improve your Python skills? Looking for a way to practice on a regular basis, backed up by a community of learners?
Look no more: A new advanced-level cohort of Weekly Python Exercise is star
Reuven Lerner
Last chance: Weekly Python Exercise B3 starts tomorrow!
Want to improve your Python skills? Looking for a way to practice on a regular
NumFOCUS: TARDIS Joins NumFOCUS as a Sponsored Project
Link: https://numfocus.org/blog/tardis-joins-numfocus-as-a-sponsored-project?utm_source=rss&utm_medium=rss&utm_campaign=tardis-joins-numfocus-as-a-sponsored-project
NumFOCUS is pleased to announce the newest addition to our fiscally sponsored projects: TARDIS TARDIS is an open-source, Monte Carlo based radiation transport simulator for supernovae ejecta. TARDIS s
Link: https://numfocus.org/blog/tardis-joins-numfocus-as-a-sponsored-project?utm_source=rss&utm_medium=rss&utm_campaign=tardis-joins-numfocus-as-a-sponsored-project
NumFOCUS is pleased to announce the newest addition to our fiscally sponsored projects: TARDIS TARDIS is an open-source, Monte Carlo based radiation transport simulator for supernovae ejecta. TARDIS s
NumFOCUS
TARDIS Joins NumFOCUS as a Sponsored Project - NumFOCUS
NumFOCUS is pleased to announce the newest addition to our fiscally sponsored projects: TARDIS TARDIS is an open-source, Monte Carlo based radiation transport simulator for supernovae ejecta. TARDIS simulates photons traveling through the outer layers of…
Podcast.__init__: Power Up Your Java Using Python With JPype - Episode 286
Link: https://www.pythonpodcast.com/jpype-java-python-bridge-episode-286/
Python and Java are two of the most popular programming languages in the world, and have both been around for over 20 years. In that time there have been numerous attempts to provide interoperability
Link: https://www.pythonpodcast.com/jpype-java-python-bridge-episode-286/
Python and Java are two of the most popular programming languages in the world, and have both been around for over 20 years. In that time there have been numerous attempts to provide interoperability
The Python Podcast.__init__
The Python Podcast.__init__: Power Up Your Java Using Python With JPype
An interview with Karl Nelson about using the JPype library for bridging the Java and Python ecosystems for scientific computing
Codementor: Retrieving Email and Phone No. for a Desktop App from Google Contacts using Python and Gmail API | by Aritra Roy | Analytics Vidhya | Medium
Link: https://www.codementor.io/aritraroy24/retrieving-email-and-phone-no-for-a-desktop-app-from-google-contacts-using-python-and-gmail-api-by-aritra-roy-analytics-vidhya-medium-1bmw2d9qg1
Though python has been created by Guido van Rossum as a hobby project in the 90’s decade, it has become the most popular language now. Due to its ability to work in various fields and easy syntax...
Link: https://www.codementor.io/aritraroy24/retrieving-email-and-phone-no-for-a-desktop-app-from-google-contacts-using-python-and-gmail-api-by-aritra-roy-analytics-vidhya-medium-1bmw2d9qg1
Though python has been created by Guido van Rossum as a hobby project in the 90’s decade, it has become the most popular language now. Due to its ability to work in various fields and easy syntax...
www.codementor.io
Retrieving Email and Phone No. for a Desktop App from Google Contacts using Python and Gmail API | by Aritra Roy | Analytics Vidhya…
Though python has been created by Guido van Rossum as a hobby project in the 90’s decade, it has become the most popular language now. Due to its ability to work in various fields and easy syntax...
Python Software Foundation: Python Software Foundation Fellow Members for Q3 2020
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/mROVYF52RAM/python-software-foundation-fellow.html
It's that time of year! Let us welcome the new PSF Fellows for Q3! The following people continue to do amazing things for the Python community:Débora AzevedoTwitter, WebsiteInes MontaniTwitter, GitHub
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/mROVYF52RAM/python-software-foundation-fellow.html
It's that time of year! Let us welcome the new PSF Fellows for Q3! The following people continue to do amazing things for the Python community:Débora AzevedoTwitter, WebsiteInes MontaniTwitter, GitHub
Blogspot
Python Software Foundation Fellow Members for Q3 2020
It's that time of year! Let us welcome the new PSF Fellows for Q3! The following people continue to do amazing things for the Python communi...
Artem Golubin: On code isolation in Python
Link: http://rushter.com/blog/python-code-isolation/
I started learning Python in 2009, and I had a pretty challenging task and somewhat unusual use of Python. I was working on a desktop application that used PyQT for GUI and Python as the main language
Link: http://rushter.com/blog/python-code-isolation/
I started learning Python in 2009, and I had a pretty challenging task and somewhat unusual use of Python. I was working on a desktop application that used PyQT for GUI and Python as the main language
Artem Golubin
On code isolation in Python | Artem Golubin
On why It's not possible to isolate Python code when running it in the same interpreter
Stack Abuse: How to Set Axis Range (xlim, ylim) in Matplotlib
Link: https://stackabuse.com/how-to-set-axis-range-xlim-ylim-in-matplotlib/
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Link: https://stackabuse.com/how-to-set-axis-range-xlim-ylim-in-matplotlib/
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Stack Abuse
How to Set Axis Range (xlim, ylim) in Matplotlib
In this tutorial, we'll take a look at examples of how to set the axis range (xlim, ylim) also known as X limit and Y limit using Python's Matplotlib.
Real Python: Creating a Binary Search in Python
Link: https://realpython.com/courses/creating-binary-search-python/
Binary search is a classic algorithm in computer science. It often comes up in programming contests and technical interviews. Implementing binary search turns out to be a challenging task, even when y
Link: https://realpython.com/courses/creating-binary-search-python/
Binary search is a classic algorithm in computer science. It often comes up in programming contests and technical interviews. Implementing binary search turns out to be a challenging task, even when y
Realpython
Creating a Binary Search in Python – Real Python
Binary search is a classic algorithm in computer science. In this step-by-step course, you'll learn how to implement this algorithm in Python. You'll learn how to leverage existing libraries as well as craft your own binary search Python implementation.
Python Morsels: Equality vs Identity
Link: https://www.pythonmorsels.com/topics/equality-vs-identity/
Watch First:
Variables are Pointers
The 2 Types of "Change" in Python
Transcript
You're probably already familiar with equality: that's the == operator.
identity uses the is operator.
Equality
Link: https://www.pythonmorsels.com/topics/equality-vs-identity/
Watch First:
Variables are Pointers
The 2 Types of "Change" in Python
Transcript
You're probably already familiar with equality: that's the == operator.
identity uses the is operator.
Equality
Pythonmorsels
Equality vs Identity
The == operator checks for equality (do two objects represent the same data). The is operator checks for identity (do two references point to the same object). You'll almost always want equality.
PyCoder’s Weekly: Issue #444 (Oct. 27, 2020)
Link: https://pycoders.com/issues/444
#444 – OCTOBER 27, 2020 View in Browser » Python Modulo in Practice: How to Use the % Operator In this tutorial, you’ll learn about the Python modulo operator (%). You’ll look at the mathematica
Link: https://pycoders.com/issues/444
#444 – OCTOBER 27, 2020 View in Browser » Python Modulo in Practice: How to Use the % Operator In this tutorial, you’ll learn about the Python modulo operator (%). You’ll look at the mathematica
Pycoders
PyCoder’s Weekly | Issue #444
Issue #444 of the PyCoder’s Weekly newsletter, published Oct. 27, 2020.
Exxact Corp: PyTorch 1.7.0 Now Available
Link: https://blog.exxactcorp.com/pytorch-1-7-0-now-available/?utm_medium=Feed&utm_source=Syndication
PyTorch 1.7.0
PyTorch is a widely used, open source deep learning platform used for easily writing neural network layers in Python enabling a seamless workflow from research to production. Based on To
Link: https://blog.exxactcorp.com/pytorch-1-7-0-now-available/?utm_medium=Feed&utm_source=Syndication
PyTorch 1.7.0
PyTorch is a widely used, open source deep learning platform used for easily writing neural network layers in Python enabling a seamless workflow from research to production. Based on To
Exxact
PyTorch 1.7.0 Now Available - Exxact
PyTorch is a popular, open source deep learning platform used for easily writing neural network layers in Python. Check out the newest release v1.7.0!
Reuven Lerner: Now playing on YouTube: Answers to your Python questions
Link: https://lerner.co.il/2020/10/28/now-playing-on-youtube-answers-to-your-python-questions/
Over the last year, I’ve gotten increasingly active on my YouTube channel, https://YouTube.com/reuvenlerner. Each week, I upload 1-2 new videos, typically answering questions that I’ve gotten in my co
Link: https://lerner.co.il/2020/10/28/now-playing-on-youtube-answers-to-your-python-questions/
Over the last year, I’ve gotten increasingly active on my YouTube channel, https://YouTube.com/reuvenlerner. Each week, I upload 1-2 new videos, typically answering questions that I’ve gotten in my co
Reuven Lerner
Now playing on YouTube: Answers to your Python questions
Over the last year, I've gotten increasingly active on my YouTube channel, https://YouTube.com/reuvenlerner. Each week,
Stefan Scherfke: Raise … from … in Python
Link: https://stefan.sofa-rockers.org/2020/10/28/raise-from/
When you recently upgraded to pylint 2.6.0, you may have stumbled
across a new warning:
src/mylib/core.py:74:20: W0707:
Consider explicitly re-raising using the
'from' keyword (raise-missing-from)
Link: https://stefan.sofa-rockers.org/2020/10/28/raise-from/
When you recently upgraded to pylint 2.6.0, you may have stumbled
across a new warning:
src/mylib/core.py:74:20: W0707:
Consider explicitly re-raising using the
'from' keyword (raise-missing-from)
Codementor: Introducing AutoScraper: A Smart, Fast and Lightweight Web Scraper For Python
Link: https://www.codementor.io/alirezamika/introducing-autoscraper-a-smart-fast-and-lightweight-web-scraper-for-python-1bobk91buu
Scraping the web just got a lot more automated
Link: https://www.codementor.io/alirezamika/introducing-autoscraper-a-smart-fast-and-lightweight-web-scraper-for-python-1bobk91buu
Scraping the web just got a lot more automated
www.codementor.io
Introducing AutoScraper: A Smart, Fast and Lightweight Web Scraper For Python | Codementor
Scraping the web just got a lot more automated
Codementor: Dissecting a Web stack
Link: https://www.codementor.io/lgiordani/dissecting-a-web-stack-1bn52p12cr
A layer-by-layer review of the components of a web stack and the reasons behind them
Link: https://www.codementor.io/lgiordani/dissecting-a-web-stack-1bn52p12cr
A layer-by-layer review of the components of a web stack and the reasons behind them
www.codementor.io
Dissecting a Web stack | Codementor
A layer-by-layer review of the components of a web stack and the reasons behind them
Will Kahn-Greene: Everett v1.0.3 released!
Link: https://bluesock.org/~willkg/blog/dev/everett_1_0_3.html
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy documentation of c
Link: https://bluesock.org/~willkg/blog/dev/everett_1_0_3.html
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy documentation of c
Will's Blog
Everett v1.0.3 released!
What is it?
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy documentation of co
Everett is a configuration library for Python
apps.
Goals of Everett:
flexible configuration from multiple configured environments
easy testing with configuration
easy documentation of co
Real Python: Get Started With Django Part 3: Django View Authorization
Link: https://realpython.com/django-view-authorization/
In part 1 of this series, you learned the fundamentals of Django models and views. In part 2, you learned about user management. In this tutorial, you’ll see how to combine these concepts to do Django
Link: https://realpython.com/django-view-authorization/
In part 1 of this series, you learned the fundamentals of Django models and views. In part 2, you learned about user management. In this tutorial, you’ll see how to combine these concepts to do Django
Realpython
Get Started With Django Part 3: Django View Authorization – Real Python
This tutorial covers how to restrict your web pages to users with different roles through Django view authorization. You'll learn about HttpRequest.user objects, view decorators that authenticate, and how to notify your users with the Django messages framework.
Peter Bengtsson: Generating random avatar images in Django/Python
Link: https://www.peterbe.com/plog/random-avatars-in-django-python
tl;dr; <img src="/avatar.random.png" alt="Random avataaar"> generates this image:
(try reloading to get a random new one. funny aren't they?)
When you use Gravatar you can convert people's email addr
Link: https://www.peterbe.com/plog/random-avatars-in-django-python
tl;dr; <img src="/avatar.random.png" alt="Random avataaar"> generates this image:
(try reloading to get a random new one. funny aren't they?)
When you use Gravatar you can convert people's email addr
Peterbe
Generating random avatar images in Django/Python - Peterbe.com
Python Software Foundation: Key generation and signing ceremony for PyPI
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/emzjI6-yJHk/key-generation-and-signing-ceremony-for.html
On Friday October 30th at 11:15 AM EDT the Python Software Foundation will be live streaming a remote key generation and signing ceremony to bootstrap The Update Framework for The Python Package Index
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/emzjI6-yJHk/key-generation-and-signing-ceremony-for.html
On Friday October 30th at 11:15 AM EDT the Python Software Foundation will be live streaming a remote key generation and signing ceremony to bootstrap The Update Framework for The Python Package Index
Blogspot
Key generation and signing ceremony for PyPI
On Friday October 30th at 11:15 AM EDT the Python Software Foundation will be live streaming a remote key generation and signing ceremony to...
Stack Abuse: Change Tick Frequency in Matplotlib
Link: https://stackabuse.com/change-tick-frequency-in-matplotlib/
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Link: https://stackabuse.com/change-tick-frequency-in-matplotlib/
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Stack Abuse
Change Tick Frequency in Matplotlib
In this tutorial, we'll go over how to change the tick frequency in Matplotlib, both for the entire figure as well as axis-level tick frequency customization with examples.