Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Introduction to Speech Recognition with Python

Link: https://stackabuse.com/introduction-to-speech-recognition-with-python/

Speech recognition, as the name suggests, refers to automatic recognition of human speech. Speech recognition is one of the most important tasks in the domain of human computer interaction. If you hav
RMOTR: New NumPy and Panda Courses Released

Link: https://blog.rmotr.com/new-numpy-and-panda-courses-released-2a7efc7f8f49?source=rss----2e274f91448--python

Photo by Feliphe Schiarolli on UnsplashHappy New Year, Data Scientists!We’re excited to start 2020 by adding two new courses to our library; Introduction to Scientific Computing with NumPy and Introdu
Talk Python to Me: #245 Python packaging landscape in 2020

Link: https://talkpython.fm/episodes/show/245/python-packaging-landscape-in-2020

Python is growing incredibly quickly and has found its place in many facets of the developer and computational space. But one area that is still shaky and uncertain is packaging and shipping software
Doug Hellmann: entry_point_inspector 0.1.2

Link: http://feeds.doughellmann.com/~r/doughellmann/python/~3/h1xiRbUMCnQ/

Entry Point Inspector is a tool for looking at the entry point plugins installed on a system. What’s new in 0.1.2? Fix compatibility issues with python3 (contributed by guozijian)
Abhijeet Pal: Creating Feeds with Django

Link: https://djangocentral.com/creating-feeds-with-django/

Django ships with built-in syndication feed generating framework, which is used to generate dynamic Atom and RSS feeds. RSS is an abbreviation for Really Simple Syndication, it’s a way to have informa
Python Data: Python Data Weekly Roundup – Jan 3 2020

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

In this week’s Python Data Weekly Roundup:It’s time for Time-series DatabasesIf you haven’t taken a look at time-series databases, you should. For a lot of what we do today in data science, a time ser
Django Weblog: DjangoCon Europe 2020 Announcement

Link: https://www.djangoproject.com/weblog/2020/jan/03/djangocon-europe-2020/

We are happy to announce that DjangoCon Europe 2020 will take place in Porto, Portugal 🇵🇹! The website is already online at 2020.djangocon.eu and it will be kept up to date with the latest updates. Do
Mike C. Fletcher: PyOpenGL 3.1.5 is Out

Link: http://blog.vrplumber.com/b/2020/01/03/pyopengl-315-out/

I've pushed out the PyOpenGL 3.1.5 release. It has some (relatively minor) fixes for wgl and egl operations, and one for what looks like a change in numpy scalar handling in the latest numpy. Availabl
Abhijeet Pal: Adding Custom Model Managers In Django

Link: https://djangocentral.com/adding-custom-model-managers-in-django/

A manager is an interface through which database query operations are provided to Django models. At least one Manager exists for every model in a Django application, objects is the default manager of
Paolo Amoroso: A List of Free Python Books

Link: http://blog.paoloamoroso.com/2019/09/a-list-of-free-python-books.html

If you’re like me, you love learning by reading books.So, when I set out to learn the Python programming language in the last days of 2018, I started looking for good books. I googled, browsed Reddit,
Catalin George Festila: Python 3.7.5 : Testing the PyMongo package - part 001.

Link: http://python-catalin.blogspot.com/2020/01/python-375-testing-pymongo-package-part.html

MongoDB and PyMongo are not my priorities for the new year 2020 but because they are quite evolved I thought to start presenting it within my free time.
The PyMongo python package is a Python distribu
Weekly Python StackOverflow Report: (ccix) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/01/ccix-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-04 21:55:45 GMTObject is enumerable but not indexable? - [11/3]
Catalin George Festila: Python 3.7.5 : Testing cryptography python package - part 001.

Link: http://python-catalin.blogspot.com/2020/01/python-375-testing-cryptography-python.html

There are many python packets that present themselves as useful encryption and decryption solutions. I recommend before you test them, use them and spend time with them to focus on the correct study o
Podcast.__init__: Checking Up On Python's Role in DevOps

Link: https://www.pythonpodcast.com/devops-in-python-episode-244/

Python has been part of the standard toolkit for systems administrators since it was created. In recent years there has been a shift in how servers are deployed and managed, and how code gets released
James Bennett: A Python Packaging Carol

Link: https://www.b-list.org/weblog/2020/jan/05/packaging/


I have endeavoured in this Ghostly little book, to raise the Ghost of an Idea, which shall not put my readers out of humour with themselves, with each other, with the season, or with me. May it haunt
Catalin George Festila: Python 3.7.5 : Set json with settings in Django project.

Link: http://python-catalin.blogspot.com/2020/01/python-375-set-json-with-settings-in.html

[mythcat@desk django]$ source env/bin/activate
(env) [mythcat@desk django]$ cd mysite/
(env) [mythcat@desk mysite]$ ls
db.sqlite3 manage.py mysite test001
(env) [mythcat@desk mysite]$ pwd
/home/myt
Julien Danjou: Atomic lock-free counters in Python

Link: https://julien.danjou.info/atomic-lock-free-counters-in-python/

At Datadog, we're really into metrics. We love them, we store them, but we also generate them. To do that, you need to juggle with integers that are incremented, also known as counters.While having an