Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: The Real Python Podcast – Episode #85: Exploring Django Templates, Tags, and Filters

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

Are you getting the most out of the Django framework? It's a powerful web framework if you're not interested in reinventing the wheel. Django includes a useful template system with inheritance for com
Python Insider: Python 3.9.8 and 3.11.0a2 are now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/uo3G1CE85vk/python-398-and-3110a2-are-now-available.html

Tcl/Tk updates
With the recent release of macOS 12 Monterey, we noticed that tkinter
file dialogs are failing to show up on this new operating system,
including in our built-in IDLE. Thanks to rapid
ItsMyCode: [Solved] NumPy.ndarray object is Not Callable Python

Link: https://itsmycode.com/solved-numpy-ndarray-object-is-not-callable-python/

ItsMyCode |
In Python, the array will be accessed using an indexing method. Similarly, the NumPy array also needs to be accessed through the indexing method. In this article, we will look at how to fi
Nicola Iarocci: Is Eve still maintained?

Link: https://nicolaiarocci.com/is-eve-still-maintained/

Tonight someone opened a ticket on the Eve repository. I jotted down a quick reply and was about to hit the Comment button when I thought a more articulated reply was in order. I also want it publishe
Weekly Python StackOverflow Report: (ccc) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/11/ccc-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-11-06 16:14:07 GMTAfter conda update, python kernel crashes when m
Podcast.__init__: Building Conversational AI to Augment Sales Teams at Structurely

Link: https://www.pythonpodcast.com/structurely-conversational-ai-sales-episode-339/

The true power of artificial intelligence is its ability to work collaboratively with humans. Nate Joens co-founded Structurely to create a conversational AI platform that augments human sales teams t
John Ludhi/nbshare.io: Tweet Sentiment Analysis Using LSTM With PyTorch

Link: https://www.nbshare.io/notebook/754493525/Tweet-Sentiment-Analysis-Using-LSTM-With-PyTorch/








Tweet Sentiment Analysis Using LSTM With PyTorch








We will go through a common case study (sentiment analysis) to explore many techniques and patterns in Natural Language Processing.
ItsMyCode: numpy.argmax() in Python

Link: https://itsmycode.com/numpy-argmax-in-python/

ItsMyCode |
The numpy.argmax() function returns the indices of the maximum values along an axis. In case of multiple occurrences of the maximum values, the indices corresponding to the first occurrenc
ItsMyCode: nxnxn matrix python

Link: https://itsmycode.com/nxnxn-matrix-python/

ItsMyCode |
In this tutorial, we will take a look at how to create the nxnxn matrix in Python.
What is NxNxN?
The term NxNxN (pronounced as N by N by N) is also called as NxNxN cube or NxNxN puzzle. I
Ned Batchelder: Computing a GitHub Action matrix with cog

Link: https://nedbatchelder.com/blog/202111/github_action_matrix_with_cog.html

I had a complex three-axis GitHub Action matrix, but needed to skip some
combinations. I couldn’t get what I needed with the direct YAML syntax, so I
used Cog to generate the matrix with
Python.The m
Mike Driscoll: PyDev of the Week: Sarah Gibson

Link: https://www.blog.pythonlibrary.org/2021/11/08/pydev-of-the-week-sarah-gibson/

This week we welcome Sarah Gibson (@drsarahlgibson) as our PyDev of the Week! Sarah is a core developer for Binder, JupyterHub, and The Turing Way. You can see what else she is contributing to over on
Stack Abuse: Python: Convert List to String with join()

Link: https://stackabuse.com/python-convert-list-to-string/

Data takes many shapes and forms - one of the most common data structure being lists/arrays. Strings are, essentially, sequences of alphanumeric characters. The parallel between these is apparent, and
Real Python: Build a Command-Line To-Do App With Python and Typer

Link: https://realpython.com/python-typer-cli/

Building an application to manage your to-do list can be an interesting project when you’re learning a new programming language or trying to take your skills to the next level. In this tutorial, you’l
PyCharm: YouTube: New Getting Started Series

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


We have been working hard in the last year to make our YouTube channel more relevant for you. We’ve included tutorials like the Visual Testing with Pytest one, we’ve published the ‘What Does This Pac
Read the Docs: Read the Docs newsletter - November 2021

Link: https://blog.readthedocs.com/newsletter-november-2021/


Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Kogan Dev: Debugging Celery Issues in Django

Link: https://devblog.kogan.com/blog/b1c2cx4suhgj0zvmit2ra7kfpnt9x7

Lockdown has ended in Melbourne and we’re able to resume mingling, gossiping, and chattering. Just before we could get off our seats and out the door though, Celery (our distributed task queue) jumped
Python Software Foundation: 2021 End of the year fundraiser!

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/9v_yeI8E5G4/2021-end-of-year-fundraiser.html

Summary: The PSF launched its end-of-the-year fundraiser. There are two ways to donate: 1. donate directly to the PSF or 2. purchase a discounted PyCharm license, with all proceeds going to the PSF. C
Python for Beginners: Remove Whitespace Characters from a String

Link: https://www.pythonforbeginners.com/basics/remove-whitespace-characters-from-a-string

Strings in python are used extensively for processing text data. In this article, we will look at different ways with which we can remove whitespace characters from a string. We will also implement th