Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Fabio Zadrozny: PyDev 6.5.0 (#region code folding)

Link: http://feedproxy.google.com/~r/blogspot/pydev/~3/8Z9yX4D2R7o/pydev-650-region-code-folding.html

PyDev 6.5.0 is now available for download.There are some nice features and fixes available in this release:#region / #endregion comments can now be used by the code-folding engine. An action to easily
Itamar Turner Trauring: Stabbing yourself with a fork() in a multiprocessing.Pool full of sharks

Link: https://codewithoutrules.com/2018/09/04/python-multiprocessing/

It’s time for another deep-dive into Python brokenness and the pain that is POSIX system programming, this time with exciting and not very convincing shark-themed metaphors!
Most of what you’ll learn
Stack Abuse: Text Summarization with NLTK in Python

Link: https://stackabuse.com/text-summarization-with-nltk-in-python/

Introduction
As I write this article, 1,907,223,370 websites are active on the internet and 2,722,460 emails are being sent per second. This is an unbelievably huge amount of data. It is impossible fo
Stack Abuse: File Handling in Python

Link: https://stackabuse.com/file-handling-in-python/

Introduction
It is an unwritten consensus that Python is one of the best starting programming languages to learn as a novice. It is extremely versatile, easy to read/analyze, and quite pleasant to the
Continuum Analytics Blog: Anaconda Welcomes Maggie Key as SVP of Customer Success

Link: https://www.anaconda.com/blog/company-blog/anaconda-welcomes-maggie-key-svp-of-customer-success/

Former VP of Accruent joins executive team to build out and embed customer success program within Anaconda AUSTIN, Texas – September 4, 2018 – Anaconda, Inc., the most popular Python data science plat
James Bennett: django-registration 3.0

Link: https://www.b-list.org/weblog/2018/sep/04/three-dot-oh/

Today I’m pleased to announce the release of django-registration 3.0. This is a pretty big update, and one that’s been coming for a while, so I want to take a moment to go briefly through the changes
Michael Foord: Interview on Podcast.__init__

Link: https://agileabstractions.com/Podcast/


I recently had the great pleasure of having a conversation with Tobias Macey, who produces the Podcast.init podcast. We spent almost an hour talking about testing, the Python community and the mock l
Python Celery - Weekly Celery Tutorials and How-tos: Celery task exceptions and automatic retries

Link: https://www.python-celery.com/2018/09/04/error-handling-retry/

Handling Celery task failures in a consistent and predictable way is a prerquisite to building
a resilient asynchronous system. In this blog post you will learn how to: handle Celery task errors
and a
NumFOCUS: 2018 NumFOCUS Board Selection Results

Link: https://numfocus.org/blog/2018-numfocus-board-selection-results

The post 2018 NumFOCUS Board Selection Results appeared first on NumFOCUS.
NumFOCUS: 2018 Board of Directors Selection Process Challenges

Link: https://numfocus.org/blog/2018-board-of-directors-selection-process-challenges

The post 2018 Board of Directors Selection Process Challenges appeared first on NumFOCUS.
Chris Warrick: Python Virtual Environments in Five Minutes

Link: https://chriswarrick.com/blog/2018/09/04/python-virtual-environments/

In Python, virtual environments are used to isolate projects from each other
(if they require different versions of the same library, for example). They let
you install and manage packages without adm
NumFOCUS: NumFOCUS Sustainer Weeks

Link: https://numfocus.org/blog/numfocus-sustainer-weeks

The post NumFOCUS Sustainer Weeks appeared first on NumFOCUS.
Matthew Rocklin: Dask Release 0.19.0

Link: https://matthewrocklin.com/blog//work/2018/09/05/dask-0.19.0

This work is supported by Anaconda Inc.
I’m pleased to announce the release of Dask version 0.19.0. This is a major
release with bug fixes and new features. The last release was 0.18.2 on July
23rd.
"Menno's Musings": IMAPClient 2.1.0

Link: http://menno.io/posts/imapclient-210/

IMAPClient 2.1.0 has just been
released! Here's the main highlights:

Python 3.7 is now officially suppported
Testing against PyPy (version 2 and 3)
Added support for the QUOTA extension
Helper for l
Real Python: Conditional Statements in Python

Link: https://realpython.com/python-conditional-statements/

From the previous tutorials in this series, you now have quite a bit of Python code under your belt. Everything you have seen so far has consisted of sequential execution, in which statements are alw