Python Software Foundation: Election Reform Community Update
This past June, the PSF Board of Directors opened a discussion to solicit feedback on the topic of election reform. The discussion was a lively one and touched on the following topics: PSF Director...
View ArticleReal Python: Python and MySQL Database: A Practical Introduction
MySQL is one of the most popular database management systems (DBMSs) on the market today. It ranked second only to the Oracle DBMS in this year’s DB-Engines Ranking. As most software applications need...
View ArticlePython Morsels: What is self?
Related article:ClassesVariables Are PointersselfTranscript:When you define a class in Python, you'll see self everywhere. What is self and why is it everywhere?A class definitionThe below Point has...
View ArticleTalk Python to Me: #297 Python year in review (2020 edition)
2020 will be one for the history books, won't it? I've put together a great group to look back on 2020 - from the Python perspective. <br/> <br/> Join me along with Cecil Phillip, Ines...
View ArticlePython Bytes: #214 Python year in review (2020 edition)
<p>2020 will be one for the history books, won't it? I've put together a great group to look back on 2020 - from the Python perspective.</p> <p>Join Brian and Michael along with Cecil...
View ArticleReuven Lerner: You can, but should you? Combining some of Python’s more...
A few weeks ago, I held my monthly “office hours” session for subscribers to Weekly Python Exercise. WPE students are always invited not only to ask questions about what we’re learning in the course,...
View ArticlePodcast.__init__: Making Content Management A Smooth Experience With A...
Building a web application requires integrating a number of separate concerns into a single experience. One of the common requirements is a content management system to allow product owners and...
View ArticleStack Abuse: Ultimate Guide to Heatmaps in Seaborn with Python
IntroductionA heatmap is a data visualization technique that uses color to show how a value of interest changes depending on the values of two other variables.For example, you could use a heatmap to...
View ArticleReal Python: Django Admin Customization
The Django framework comes with a powerful administrative tool called admin. You can use it out of the box to quickly add, delete, or edit any database model from a web interface. But with a little...
View ArticlePyCoder’s Weekly: Issue #453 (Dec. 29, 2020)
#453 – DECEMBER 29, 2020View in Browser »Accelerating Python on GPUs With nvc++ and Cython Python on GPUs has become a big topic for processing big data and scientific computing. In this article from...
View ArticleZero to Mastery: Python Monthly 💻🐍 December 2020
13th issue of Python Monthly! Read by 20,000+ Python developers every month. This monthly newsletter is focused on keeping you up to date with the industry, keeping your skills sharp, without wasting...
View ArticlePython Anywhere: Brexit update
PythonAnywhere is a UK-based company, and the transition period for the UK’s exit from the European Union on will end on 31 December 2020. This will not have any visible effect for people who use our...
View ArticleMike Driscoll: Python Image Processing Kickstarter Coming Next Week!
I will be launching a new Kickstarter on Monday, January 4th to help launch my 9th book, Pillow: Image Processing with Python.In this book, you will learn how to edit photos with Python. You will...
View ArticleMatthew Wright: Indexing and Selecting in pandas – slicing
Slicing data in pandas This is second in the series on indexing and selecting data in pandas. If you haven't read it yet, see the first post that covers the basics of selecting based on index or...
View ArticleThe Open Sourcerer: Blogging about Python desktop apps improvements on Planet...
Hi, fellow pythonistas! Before I start publishing future Python-related posts to this aggregator, I would like to shortly introduce myself and the reason for this blog’s presence on the planet.I am a...
View ArticleTest and Code: 141: Visual Testing - Angie Jones
Visual Testing has come a long way from the early days of x,y mouse clicks and pixel comparisons. Angie Jones joins the show to discuss how modern visual testing tools work and how to incorporate...
View ArticlePython Morsels: Python's Two Different String Representations
Transcript:Let's talk about the two different string representations that all Python objects have.String Representation of an ObjectWe have a datetime.date object here that represents the Python 2 end...
View ArticlePyCharm: PyCharm 2020.3.2 Supports Apple Silicon
We have special news for those of you using Mac with an M1 chip: PyCharm 2020.3.2 is out and brings support for Apple Silicon! To start working, download the separate installer for PyCharm for Apple...
View ArticlePyPy Development: Mac meets Arm64
Looking for sponsorshipApple now ships Macs which are running on an arm64 variant machine with the latest version of MacOS, Big Sur M1. We are getting requests for PyPy to support this new...
View ArticleMatt Layman: Customer Docs - Building SaaS #85
In this episode, I integrated customer documentation into the app. I showed how to build Sphinx documentation into a Django project, then created a help view to link to the docs. Finally, I added...
View Article