Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
NumFOCUS: Astropy Receives $900k Grant from Moore Foundation

Link: https://numfocus.org/blog/astropy-receives-900k-grant-from-moore-foundation

The post Astropy Receives $900k Grant from Moore Foundation appeared first on NumFOCUS.
Catalin George Festila: Python 3.7.5 : Python and SQL, a fast approach.

Link: http://python-catalin.blogspot.com/2019/11/python-375-python-and-sql-fast-approach.html

Today he had to solve a task that required declaring a series of consecutive days to read from several SQL tables.
As you know, this task would require a complex query to include statements.
I solved
Mike Driscoll: Black Friday Deals on Python Books

Link: http://www.blog.pythonlibrary.org/2019/11/26/black-friday-deals-on-python-books/

Interesting in learning Python? Well you will be happy to know that I am running a Black Friday / Cyber Monday sale of my Python books. But I am starting the sale early so that you have plenty of time
Robin Wilson: Using SQLAlchemy to access MySQL without frustrating library installation issues

Link: http://blog.rtwilson.com/using-sqlalchemy-to-access-mysql-without-frustrating-library-installation-issues/

This is more a ‘note to myself’ than anything else, but I expect some other people might find it useful.
I’ve often struggled with accessing MySQL from Python, as the ‘default’ MySQL library for Pytho
Podcast.__init__: Faster And Safer Software Development With Feature Flags

Link: https://www.pythonpodcast.com/feature-flags-episode-239/

Any software project that is worked on or used by multiple people will inevitably reach a point where certain capabilities need to be turned on or off. In this episode Pete Hodgson shares his experien
PyCharm: Webinar: “React+TypeScript+TDD Part 2” with Paul Everitt

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

Last month we did a webinar on using PyCharm to write React+TypeScript apps using TDD. We teased a “Part 2” that was more in-depth. Thanks to the good folks at WebStorm, we’ll be doing a Part 2, Tuesd
Real Python: Python KeyError Exceptions and How to Handle Them

Link: https://realpython.com/courses/python-keyerror/

Python’s KeyError exception is a common exception encountered by beginners. Knowing why a KeyError can be raised and some solutions to prevent it from stopping your program are essential steps to impr
Paolo Amoroso: Revisiting Building Android Apps in Python Using Kivy with Android Studio

Link: http://blog.paoloamoroso.com/2019/11/revisiting-building-android-apps-in.html

One of the books I read on Kivy, a Python cross-platform GUI framework, is Building Android Apps in Python Using Kivy with Android Studio: With Pyjnius, Plyer, and Buildozer by Ahmed Fawzy Mohamed Gad
Stack Abuse: Insertion Sort in Python

Link: https://stackabuse.com/insertion-sort-in-python/

Introduction
If you're majoring in Computer Science, Insertion Sort is most likely one of the first sorting algorithms you have heard of. It is intuitive and easy to implement, but it's very slow on l
Paolo Amoroso: Two Books About the Kivy GUI Framework

Link: http://blog.paoloamoroso.com/2019/11/two-books-about-kivy-gui-framework.html

The Kivy Python GUI framework is intriguing.Not only it’s cross-platform but also supports Android. Java is too verbose and low level for me and Kivy is an opportunity for developing native Android ap
Chris Moffitt: Tips for Selecting Columns in a DataFrame

Link: https://pbpython.com/selecting-columns.html


Introduction
This article will discuss several tips and shortcuts for using
iloc
to work with a
data set that has a large number of columns. Even if you have some experience with using
iloc
you s
PyCoder’s Weekly: Issue #396 (Nov. 26, 2019)

Link: https://pycoders.com/issues/396

#396 – NOVEMBER 26, 2019 View in Browser » PyCon 2020 Registration Is Now Open PyCon is the largest annual gathering for the community that uses and develops the open-source Python programming l
Janusworx: #100DaysOfCode, Days 005, 006 and 007 – The Collections Module

Link: https://janusworx.com/100daysofcode-days-005-006-and-007-the-collections-module/

I have been at this an hour daily for four days now.
It just is not clicking for me.
One thing is for sure, this Talk Python course is definitely going to take longer than a hundred days!
I don’t kn
Lintel Technologies: Manhole service in Twisted Application.

Link: https://howto.lintel.in/how-to-run-manhole-service-in-twisted/

What is Manhole?
Manhole is an in-process service, that will accept UNIX domain socket connections and present the stack traces for all threads and an interactive prompt.
Using it we can access and mo
PyBites: From webscraper to wordcloud

Link: https://pybit.es/guest-webscraper-to-wordcloud.html

Living in Belgium, I decided to scrape the Belgian newspaper Het Laatste Nieuws.
I wanted to know what kept people busy when reading the news, so I went for a collection of all comments on all article
PyBites: There's no wrong way... to eat a Bite of Py

Link: https://pybit.es/guest-eat-a-bite-of-py.html

The Bites of Py exercises from PyBites are a wonderful way to improve your Python skills in short, focused practice sessions. You can even work on them right from your browser! Of course, that's not t
Real Python: Python Descriptors: An Introduction

Link: https://realpython.com/python-descriptors/

Descriptors are a specific Python feature that power a lot of the magic hidden under the language’s hood. If you’ve ever thought that Python descriptors are an advanced topic with few practical applic