Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Erik Marsja: Explorative Data Analysis with Pandas, SciPy, and Seaborn

Link: https://www.marsja.se/explorative-data-analysis-with-pandas-scipy-and-seaborn/

In this post we are going to learn to explore data using Python, Pandas, and Seaborn. The data we are going to explore is data from a Wikipedia article. In this post we are actually going to learn how
PyCharm: PyCharm 2018.3.1 RC Out Now

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

PyCharm 2018.3.1 Release Candidate is now available, with various bug fixes. Get it now from our Confluence page
Improved in This Version

A fix for recently added WSL support in PyCharm 2018.3
A few
PyPy Development

Link: http://feedproxy.google.com/~r/PyPyStatusBlog/~3/S48pL2fBShc/hello-everyone-at-pypy-we-are-trying-to.html


Hello everyone
At PyPy we are trying to support a relatively wide range of platforms. We have PyPy working on OS X, Windows and various flavors of linux (and unofficially various flavors of BSD) on t
PythonClub - A Brazilian collaborative blog about Python: Algoritmos de Ordenação

Link: http://pythonclub.com.br/algoritmos-ordenacao.html

Fala pessoal, tudo bom?
Nos vídeos abaixo, vamos aprender como implementar alguns dos algoritmos de ordenação usando Python.

Bubble Sort
Como o algoritmo funciona: Como implementar o algoritmo usando
PyCharm: PyCharm 2018.3.1 RC Out Now

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

PyCharm 2018.3.1 Release Candidate is now available, with various bug fixes. Get it now from our Confluence page
Improved in This Version

A fix for recently added WSL support in PyCharm 2018.3
A few
Continuum Analytics Blog: Understanding Conda and Pip

Link: https://www.anaconda.com/blog/developer-blog/understanding-conda-pip/

Conda and pip are often considered as being nearly identical. Although some of the functionality of these two tools overlap, they were designed and should be used for different purposes. Pip is the Py
Stack Abuse: Python Data Visualization with Matplotlib

Link: https://stackabuse.com/python-data-visualization-with-matplotlib/

Introduction
Visualizing data trends is one of the most important tasks in data science and machine learning. The choice of data mining and machine learning algorithms depends heavily on the patterns
Hynek Schlawack: Python Application Dependency Management in 2018

Link: https://hynek.me/articles/python-app-deps-2018/

We have more ways to manage dependencies in Python applications than ever. But how do they fare in production? Unfortunately this topic turned out to be quite polarizing and was at the center of a lot
Catalin George Festila: Python Qt5 - submenu example.

Link: http://python-catalin.blogspot.com/2018/11/python-qt5-submenu-example.html

Using my old example I will create a submenu with PyQt5.First, you need to know the submenu works like the menu.Let's see the result:The source code is very simple:# -*- coding: utf-8 -*-"""@author: c
Python Engineering at Microsoft: Python in Visual Studio Code – November 2018 Release

Link: https://blogs.msdn.microsoft.com/pythonengineering/2018/11/29/python-in-visual-studio-code-november-2018-release/

We are pleased to announce that the November 2018 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it dir
Matt Layman: Deciphering Python: How to use Abstract Syntax Trees (AST) to understand code

Link: https://www.mattlayman.com/blog/2018/decipher-python-ast/

Let’s get a little “meta” about programming.
How does the Python program (better know as the interpreter) “know” how to run your code? If you’re new to programming, it may seem like magic. In fact, it
Reinout van Rees: Amsterdam Python meetup, november 2018

Link: http://reinout.vanrees.org/weblog/2018/11/30/amsterdam-python-meetup.html


My summary of the 28 november python meetup at the Byte office. I myself also gave a talk (about
cookiecutter) but I obviously
haven't made a summary of that. I'll try to summarize that one later :-)
PyBites: 3 Cool Things You Can do With the dateutil Module

Link: https://pybit.es/python-dateutil.html

In this short article I will show you how to use dateutil's parse, relativedelta and rrule to make it easier to work with datetimes in Python.
Firt some necessary imports:
>>> from datetime import dat
Codementor: Subtleties of Python

Link: https://www.codementor.io/packt/subtleties-of-python-psbjduwls

A good software engineer understands how crucial attention to detail is; minute details, if overlooked, can make a world of difference between a working unit and a disaster. That’s why writing...
Stack Abuse: Handling Unix Signals in Python

Link: https://stackabuse.com/handling-unix-signals-in-python/

UNIX/Linux systems offer special mechanisms to communicate between each individual process. One of these mechanisms are signals, and belong to the different methods of communication between processes
Shannon -jj Behrens: PyCon Notes: PostgreSQL Proficiency for Python People

Link: http://www.jjinux.com/2014/04/pycon-notes-postgresql-proficiency-for.html

In summary, this tutorial was fantastic! I learned more in three hours than I would have learned if I had read a whole book!Here's the video. Here are the slides. Here are my notes:Christophe Pettus w
Shannon -jj Behrens: JJ's Mostly Adequate Summary of the Django Meetup: When *Not* To Use the ORM & Goodbye REST: Building GraphQL APIs with Django

Link: http://www.jjinux.com/2018/11/jjs-mostly-adequate-summary-of-django.html

The Django meetup was at Prezi. They have a great space. They are big Django users.Goodbye REST: Building APIs with Django and GraphQLJaden Windle, @jaydenwindle, lead engineer at Jetpack.https://gith
gamingdirectional: Create a game over scene for pygame project

Link: http://gamingdirectional.com/blog/2018/12/01/python-3/

In this article we are going to create a game over scene for the pygame project, we will use back the start scene class which we have created previously to render our game over scene by slightly modif
Talk Python to Me: #188 Async for the Pythonic web with Sanic

Link: https://talkpython.fm/episodes/show/188/async-for-the-pythonic-web-with-sanic

What do most web servers do most of the time? They wait. They wait on external systems while processing a request.