Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Abhijeet Pal: Flask vs Django: Selecting the Perfect Python Web Framework

Link: http://djangocentral.com/flask-vs-django-selecting-the-perfect-python-web-framework/

Python offers developers a multitude of options when it comes to web frameworks, but two of the most popular choices are Flask and Django. Both frameworks have their own strengths and cater to differe
Real Python: The Real Python Podcast – Episode #161: Resources and Advice for Building CircuitPython Projects

Link: https://realpython.com/podcasts/rpp/161/

Are you looking to advance your CircuitPython projects? Would you like a collection of resources and tools to help you along your path? This week on the show, Tod Kurt is here to discuss building proj
Stack Abuse: Efficient Data Manipulation with Apply() Function in Pandas

Link: https://stackabuse.com/efficient-data-manipulation-with-apply-function-in-pandas/

Introduction
The apply() function is a powerful tool in Python for data analysis and manipulation. It is a valuable instrument for any analyst's toolkit, as it can be seamlessly integrated with other
Fabio Zadrozny: robocorp.log: a library to answer what happened in a Python run.

Link: http://pydev.blogspot.com/2023/06/robocorplog-library-to-answer-what.html

It's been a while since I don't post, so, I decided to shed some details on what I'm working now (which I think is a really nice -- open source -- tool for the Python ecosystem -- in my view it's some
PyCon: PyCon US 2023 Recap and Recording Release

Link: https://pycon.blogspot.com/2023/06/pycon-us-2023-recap-and-recording.html

We are excited to announce that all PyCon US 2023 recordings are now available on the PyCon US YouTube channel as well as the PyCon US 2023 virtual platform, Hubilo! Be sure to subscribe to our channe
PyBites: 11 Planning and Productivity tips for Python developers

Link: https://pybit.es/articles/11-planning-and-productivity-tips-for-python-developers/

This week we talk with Sambhavi Dhanabalan about productivity as a developer. She shares 11 tips from her experience: 3 around planning and 8 generic tips.
Watch here:


Or listen here:

We also talk
Brett Cannon: State of WASI support for CPython: June 2023

Link: https://snarky.ca/wasi-support-for-cpython-june-2023/

I wanted to give an update on where WASI support for CPython stood today and what I see happening in the future.💡If you don&apost know what WASI is or how CPython fits into it, please read my other bl
Abhijeet Pal: How to Add ads.txt to Your Django Project: Boost Ad Revenue with Simple Implementation

Link: http://djangocentral.com/how-to-add-adstxt-to-your-django-project-boost-ad-revenue-with-simple-implementation/

If you're looking to maximize your ad revenue and monetization efforts in your Django project, adding ads.txt is a crucial step, ads.txt is a text file that helps prevent unauthorized ad inventory fro
Abhijeet Pal: How to Read a Text File in Python with Examples

Link: http://djangocentral.com/how-to-read-a-text-file-in-python/

Working with text files is a fundamental task in many Python applications. Whether you're processing large data files, reading configuration files, or analyzing log files, understanding how to read te
CodersLegacy: How to read Excel files with Multiple Sheets in Python Pandas

Link: https://coderslegacy.com/python-pandas-read-excel-files/

Excel files often contain multiple sheets, each representing different aspects of data. When working with such files in Python, it is crucial to know how to extract and analyze data from specific shee
CodersLegacy: Numba Tutorial: Accelerating Python Code with JIT Compilation

Link: https://coderslegacy.com/python-numba-tutorial/

In today’s data-driven world, performance optimization plays a crucial role in computational tasks. Python, being an interpreted language, may not always provide the desired speed for computationally
Python Software Foundation: The Python Language Summit 2023

Link: https://pyfound.blogspot.com/2023/05/the-python-language-summit-2023_29.html

Every year, just before the start of PyCon US, core developers, triagers, and special guests gather for the Python Language Summit: an all-day event of talks where the future direction of Python is di
ListenData: Python for Data Science: Beginner's Guide

Link: https://www.listendata.com/2020/10/learn-python-for-data-science.html

This tutorial would help you to learn Data Science with Python by examples. It is designed for beginners who want to get started with Data Science in Python. Python is an open source language and it i
Stack Abuse: Guide to Interfaces in Python

Link: https://stackabuse.com/guide-to-interfaces-in-python/

Introduction
As you likely know, Python is a dynamically-typed, object-oriented language loved for its simplicity and readability. Its unique approach to object-oriented programming is one of its many
Mike Driscoll: PyDev of the Week: Max Kahan

Link: https://www.blog.pythonlibrary.org/2023/06/26/pydev-of-the-week-max-kahan/

This week, we welcome Max Kahan (@max_does_tech) as our PyDev of the Week! Max is a Python Developer Advocate at Vonage. You can see Max’s code over on GitHub if you’re curious about what Max has been
Real Python: How to Flatten a List of Lists in Python

Link: https://realpython.com/python-flatten-list/

Sometimes, when you’re working with data, you may have the data as a list of nested lists. A common operation is to flatten this data into a one-dimensional list in Python. Flattening a list involves
Python Bytes: #342 Don't Believe Those Old Blogging Myths

Link: https://pythonbytes.fm/episodes/show/342/dont-believe-those-old-blogging-myths

<a href='https://www.youtube.com/watch?v=--AnOKUcXBo' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>

<p>Sponsored by us! Support our work through:</p
Python Morsels: Counting occurrences in Python with collections.Counter

Link: https://www.pythonmorsels.com/using-counter/

Python's collections.Counter class is extremely handy, especially when paired with generator expressions.


Table of contents

What is a Counter?
Creating a Counter object
Getting the N most common it