Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Ned Batchelder: Bug #915: please help!

Link: https://nedbatchelder.com//blog/202001/bug_915_please_help.html

I just released coverage.py 5.0.3, with two bug fixes. There was another bug
I really wanted to fix, but it has stumped me. I’m hoping someone can figure it
out.Bug #915
describes a disk I/O failure
Jaime Buelta: Python Automation Cookbook

Link: https://wrongsideofmemphis.com/2018/10/08/i-wrote-a-python-book/

So, great news, I wrote a book and it’s available! It’s called Python Automation Cookbook, and it’s aimed to people that already know a bit of Python (not necessarily developers only), but would like
Jaime Buelta: Hands-On Docker for Microservices with Python Book

Link: https://wrongsideofmemphis.com/2019/11/22/hands-on-docker-for-microservices-with-python-is-now-available/

Last year I published a book, and I liked the experience, so I wrote another! The book is called Hands-On Docker for Microservices with Python, and it goes through the different steps to move from a M
Jaime Buelta: ffind v1.2.0 released!

Link: https://wrongsideofmemphis.com/2017/08/12/ffind-v1-2-0-released/

The new version of ffind v1.2.0 is available in GitHub and PyPi. This version includes the ability to configure defaults by environment variables and to force case insensitivity in searches. You can u
Mike Driscoll: PyDev of the Week: Tyler Reddy

Link: http://www.blog.pythonlibrary.org/2020/01/13/pydev-of-the-week-tyler-reddy/

This week we welcome Tyler Reddy (@Tyler_Reddy) as our PyDev of the Week! Tyler is a core developer of Scipy and Numpy. He has also worked on the MDAnalysis library, which is for particle physics simu
IslandT: Small python application which will remove duplicate files from the windows 10 os

Link: https://kibiwebgeek.com/small-python-application-which-will-remove-duplicate-files-from-the-windows-10-os/

I am glad to inform you all that the remove duplicate file project written with python has finally completed and now it will be uploaded to GitHub for your all to enjoy. This is free software and it
Codementor: Top 3 Best Python Books You Should Read in 2019

Link: https://www.codementor.io/martinphilipjacobs/top-3-best-python-books-you-should-read-in-2019-12lyi7686q

These 3 best python books cover the python programming language. They contain quality content on python 3, data science, and machine learning techniques used in python. Python is a widely used…
Codementor: 5 Best Text Editors for Programmers

Link: https://www.codementor.io/martinphilipjacobs/5-best-text-editors-for-programmers-12lyoxf8jc

The 5 Best Text Editors for Programmers. 1. Atom text editor 2. Vim text editor 3. VS Code text editor 4. Notepad++ text editor 5. Sublime text editor. It is essential for Software Developers and&hell
Ned Batchelder: Bug #915: solved!

Link: https://nedbatchelder.com//blog/202001/bug_915_solved.html

Yesterday I pleaded,
Bug #915: please help!
It got posted to
Hacker News,
where Robert Xiao (nneonneo) did some impressive debugging and
found the answer.
The user’s code used mocks to simulate an OSE
Abhijeet Pal: Python Program To Display Characters From A to Z

Link: https://djangocentral.com/display-char-from-a-z/

Problem Definition Create a Python program to display all alphabets from A to Z. Solution This article will go through two pythonic ways to generate alphabets. Using String module Python’s built-in st
Podcast.__init__: Using Deliberate Practice To Level Up Your Python

Link: https://www.pythonpodcast.com/reuven-lerner-deliberate-practice-episode-245/

An effective strategy for teaching and learning is to rely on well structured exercises and collaboration for practicing the material. In this episode long time Python trainer Reuven Lerner reflects o
Wingware News: Wing Python IDE 7.2 Release Candidate 1 - January 14, 2020

Link: https://wingware.com/news/2020-01-14

Wing 7.2 adds auto-formatting with Black and YAPF, expands support for virtualenv, adds
support for Anaconda environments, explicitly supports debugging modules launched with
python -m, simplifies man
Python Diary: Creating a transparently encrypted field in Django

Link: http://www.pythondiary.com/blog/Jan.13,2020/creating-transparently-encrypted-field-django.html

This is officially PythonDiary's first Python 3 article! Python 2 is now officially dead, so there's less reasons to make that a major focus going forward.
In some rare situations you may wish to hav
Techiediaries - Django: Django 3 Tutorial & CRUD Example with MySQL and Bootstrap

Link: https://www.techiediaries.com/django-3-tutorial-and-crud-example-with-mysql-and-bootstrap/

Django 3 is released with full async support! In this tutorial, we'll see by example how to create a CRUD application from scratch and step by step. We'll see how to configure a MySQL database, enable
IslandT: Return the word with the longest length within a string using Python

Link: https://kibiwebgeek.com/return-the-word-with-the-longest-length-within-a-string-using-python/

Simple challenge – eliminate all bugs from the supplied code so that the code runs and outputs the expected value. The output should be the length of the longest word, as a number. There will only be
Kushal Das: Creating password input widget in PyQt

Link: https://kushaldas.in/posts/creating-password-input-widget-in-pyqt.html


One of the most common parts of writing any desktop tool and taking password
input is about having a widget that can show/hide password text. In Qt, we can
add a QAction to a QLineEdit to do the same