Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
EuroPython Society: EuroPython 2020: Venue and location selected

Link: https://www.europython-society.org/post/188741002380

After a work intense RFP over two months with more than 40 venues competing, 18 first round entries, and two rounds of refinements, we are now happy to announce the winner:EuroPython 2020 will be held
PyCharm: PyCharm 2019.2.4

Link: http://feedproxy.google.com/~r/Pycharm/~3/DuzdmvCilnM/

PyCharm 2019.2.4 is now available!
Fixed in this Version

A regression issue that caused Pytest not to work properly with the debugger console was fixed.
The debugger console problem for PyQt5 that ca
Michael Droettboom: This Week in Glean: November 1, 2019

Link: http://droettboom.com/blog/2019/11/01/this-week-in-glean-november-1-2019/

(“This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whate
Python Insider: Python 3.5.9 is released

Link: http://feedproxy.google.com/~r/PythonInsider/~3/D5sAVdxYnzY/python-359-is-released.html

There were no new changes
in version 3.5.9; 3.5.9 was released only because of a CDN caching
problem, which resulted in some users downloading a prerelease version
of the 3.5.8 .xz source tarball.
Brett Cannon: Why you should use `python -m pip`

Link: https://snarky.ca/why-you-should-use-python-m-pip/

Fellow core developer and Canadian, Mariatta, asked on Twitter about python -m pip and who told her about that idiom along with asking for a reference explaining it:I learned sometime ago that we shou
Zato Blog: Publish/subscribe, Zato services and asynchronous API integrations

Link: https://zato.io/blog/posts/pubsub-service.html

This article introduces features built into
Zato
that let one take advantage of
publish/subscribe
topics and message queues in communication between Zato services, API clients and backend systems.
Ove
Zero-with-Dot (Oleg Żero): Using dunder methods to refine data model

Link: https://zerowithdot.com/dunder-methods-and-quaternions/

Introduction
Practically everyone who has ever used Python came across at least one of the so-called Python magic methods.
Dunder methods, as they also called that way, are Python’s special functions
Real Python: Build a Mobile Application With the Kivy Python Framework

Link: https://realpython.com/mobile-app-kivy-python/

These days, developers are highly likely to be working on a mobile or web application. Python doesn’t have built-in mobile development capabilities, but there are packages you can use to create mobile
IslandT: Summation of alphabet position with python

Link: https://kibiwebgeek.com/summation-of-alphabet-position-with-python/

In this article, we will create a python function that will turn a string into a list, then return the sum of all the positions of the alphabets within that list based on a-z. a = 1, b =2 and so on, a
Continuum Analytics Blog: The Austin American-Statesman Names Anaconda a Winner of the Austin Top Workplaces 2019 Award

Link: https://www.anaconda.com/austin-top-work-places-2019/

Anaconda is thrilled to have been awarded a Top Workplaces 2019 honor by The Austin American-Statesman. The list of winners is based solely on employee feedback gathered through a third-party survey a
Catalin George Festila: Python 3.7.5 : The ani script with ascii.

Link: http://python-catalin.blogspot.com/2019/11/python-375-ani-script-with-ascii.html

ASCII, abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications e
Catalin George Festila: Python 3.7.5 : Intro about scikit-learn python module.

Link: http://python-catalin.blogspot.com/2019/11/python-375-intro-about-scikit-learn.html

This python module named scikit-learn used like sklearn is designed to interoperate with the Python numerical and scientific libraries NumPy and SciPy and comes with various classification, regression
Nikola: Nikola v8.0.3 is out!

Link: https://getnikola.com/blog/nikola-v803-is-out.html

On behalf of the Nikola team, I am pleased to announce the immediate
availability of Nikola v8.0.3. This release fixes a few bugs, including
a notable one with galleries not working on mobile.

What i
Catalin George Festila: Python 3.7.5 : About PEP 506.

Link: http://python-catalin.blogspot.com/2019/11/python-375-about-pep-506.html

Today I did a python evaluation and saw that there are many new aspects that should be kept in mind for a programmer.
So I decided to recall some necessary elements of PEP.
First, PEP stands for Pytho
Programiz: Python time Module

Link: https://www.programiz.com/python-programming/time

In this article, we will explore time module in detail. We will learn to use different time-related functions defined in the time module with the help of examples.
Real Python: Cool New Features in Python 3.8

Link: https://realpython.com/courses/cool-new-features-python-38/

In this course, you’ll get a look into the newest version of Python. On October 14th, 2019 the first official version of Python 3.8 became ready.
You’ll learn about the following:

Using assignment ex