Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Fabio Zadrozny: PyDev 7.5.0 Released (Python 3.8 and Cython)

Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/go5WQOXQdV0/pydev-750-released-python-38-and-cython.html

PyDev 7.5.0 is now available for download.The major changes in this release are Python 3.8 support and improved Cython parsing.Python 3.8 should've been in 7.4.0 (but because of an oversight on my par
Python Data: Python Data Weekly Roundup – Jan 10 2020

Link: https://pythondata.com/python-data-weekly-roundup-jan-10-2020/

In this week’s Python Data Weekly Roundup:A Comprehensive Learning Path to Understand and Master NLP in 2020If you’re looking to learn more about Natural Language Processing (NLP) in 2020, this is a v
Peter Bengtsson: How to have default/initial values in a Django form that is bound and rendered

Link: https://www.peterbe.com/plog/initial-values-bound-django-form-rendered

Django's Form framework is excellent. It's intuitive and versatile and, best of all, easy to use. However, one little thing that is not so intuitive is how do you render a bound form with default/init
Peter Hoffmann: Azure Data Lake Storage Gen 2 with Python

Link: http://peter-hoffmann.com/2020/azure-data-lake-storage-gen-2-with-python.html

Microsoft has released a beta version of the python client azure-storage-file-datalake for the Azure Data Lake Storage Gen 2 service.
The service offers blob storage capabilities with filesystem seman
Catalin George Festila: Python 3.7.5 : About asterisk operators in Python.

Link: http://python-catalin.blogspot.com/2020/01/python-375-about-asterisk-operators-in.html

The asterisk known as the star operator is used in Python with more than one meaning attached to it.
Today I will show you some simple examples of how can be used.
Let's start with these issues.
You c
Weekly Python StackOverflow Report: (ccx) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/01/ccx-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-01-11 19:37:20 GMTReturn or yield from a function that calls a gen
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