Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: An Intro to Kivy Layouts (Video)

Link: https://www.blog.pythonlibrary.org/2022/06/23/an-intro-to-kivy-layouts-video/

Learn how to layout your widgets in Kivy, a mobile GUI framework for Python. Kivy is a cross-platform GUI framework that also works on iOS and Android.
The examples in this video are based on the code
PyBites: Common Python developer pitfalls and the 80/20 that really matters

Link: https://pybit.es/articles/pp75-common-python-developer-pitfalls-and-the-80-20-that-really-matters/

Listen here:

Welcome back to another Pybites podcast episode. In this episode we talk about common pitfalls you want to avoid when becoming a Python developer:
Pitfall #1: Tutorial paralysisPitfall #
Real Python: The Real Python Podcast – Episode #115: Digging Into PyScript & Preventing or Handling Python Errors

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

Have you heard about PyScript? The brand-new framework has the community excited about building interactive Python applications that run entirely within the user's browser. Would you like to dig into
Zero to Mastery: Python Monthly Newsletter 💻🐍

Link: https://zerotomastery.io/blog/python-monthly-newsletter-june-2022/?utm_source=python-rss-feed

31st issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
Robin Wilson: Update: recent work, conference talks and 3D printers

Link: https://blog.rtwilson.com/update-recent-work-conference-talks-and-3d-printers/

It’s been just over a year since I last posted here – and it’s been a busy year.
I’m aiming to start posting a bit more frequently (though I’ve said that before…), so I thought I’d start with an updat
Mike Driscoll: Using Python to Turn Text-to-Speech on Mac OSX (Video)

Link: https://www.blog.pythonlibrary.org/2022/06/24/using-python-to-turn-text-to-speech-on-mac-osx-video/

Learn how to turn text into speech on Mac OSX with the Python programming language

The post Using Python to Turn Text-to-Speech on Mac OSX (Video) appeared first on Mouse Vs Python.
Django Weblog: PyCharm & DSF Campaign 2022 Results

Link: https://www.djangoproject.com/weblog/2022/jun/24/pycharm-dsf-campaign-2022-results/

The sixth annual JetBrains PyCharm promotion in June netted the Django Software Foundation $25,000 this year.
This amount represents over 10% of the DSF's overall budget, which goes directly into fund
Python for Beginners: List of Dictionaries to Dataframe in Python

Link: https://www.pythonforbeginners.com/basics/list-of-dictionaries-to-dataframe-in-python

Dataframes are mainly used in python for the analysis of tabular data. In this article, we will discuss how we can convert a list of dictionaries to a dataframe in python.
List of Dictionaries to Data
ItsMyCode: [Solved] AttributeError: module ‘time’ has no attribute ‘clock’

Link: https://itsmycode.com/attributeerror-module-time-has-no-attribute-clock-2/

The time.clock() method has been removed in Python 3.8 onwards. Hence if you are using the clock() method in Python 3.8 or above, you will get AttributeError: module ‘time’ has no attribute ‘clock’.  
ItsMyCode: [Solved] AttributeError: module ‘time’ has no attribute ‘clock’

Link: https://itsmycode.com/attributeerror-module-time-has-no-attribute-clock/

The time.clock() method has been removed in Python 3.8 onwards. Hence if you are using the clock() method in Python 3.8 or above, you will get AttributeError: module ‘time’ has no attribute ‘clock’.  
Mike Driscoll: PyDev of the Week: Luiz Gustavo Martins

Link: https://www.blog.pythonlibrary.org/2022/06/27/pydev-of-the-week-luiz-gustavo-martins/

This week we welcome Luiz Gustavo Martins (@gusthema) as our PyDev of the Week! Luiz has been posting a lot of Python content on Twitter lately, so if you like to learn Python or machine learning, you
Python for Beginners: Insert New Column Into a Dataframe in Python

Link: https://www.pythonforbeginners.com/basics/insert-new-column-into-a-dataframe-in-python

Dataframes are often used to handle tabular data in python. In this article, we will discuss how we can insert a new column into a dataframe in python.
Insert New Column Into a Dataframe by Indexing i
Real Python: Build a Tic-Tac-Toe Game With Python and Tkinter

Link: https://realpython.com/tic-tac-toe-python/

Playing computer games is a great way to unwind or challenge yourself. Some people even do it professionally. It’s also fun and educational to build your own computer games. In this tutorial, you’ll b
IslandT: How to write a python program with PyCharm

Link: https://islandtropicaman.com/wp/2022/06/28/how-to-write-a-python-program-with-pycharm/

In this article, I am going to show you how to write your first program in the PyCharm community edition. PyCharm is the IDE I am using to write my Python program since 2019 and it is a fantastic IDE
Anwesha Das: Python for Everyone, yes it is

Link: http://anweshadas.in/python-for-everyone/

I moved to Sweden a few months back. I met a lot of women like me who came from different countries. Many of them had flourishing careers in their respective countries. Teacher, architect, economist,
Mike Driscoll: Python 101 - An Intro to Functions

Link: https://www.blog.pythonlibrary.org/2022/06/28/python-101-an-intro-to-functions/

Functions are reusable pieces of code. Anytime you find yourself writing the same code twice, that code should probably go in a function.
For example, Python has many built-in functions, such as dir()