Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Training Neural Radiance Field (NeRF) Models with Keras/TensorFlow and DeepVision

Link: https://stackabuse.com/training-a-neural-radiance-field-nerf-model-with-keras-tensorflow-and-deepvision/

Neural Radiance Fields, colloquially known as NeRFs have struck the world by storm in 2020, released alongside the paper "NeRF: Representing Scenes as Neural Radiance Fields for View Synthesis", and a
PyBites: Teachers aren’t the only ones who teach. As a developer you’re expected to do so too …

Link: https://pybit.es/articles/teachers-arent-the-only-ones-who-teach-as-a-developer-youre-expected-to-do-so-too/

This article appeared first as a Pybites email. To receive this kind of content first, subscribe to our friends list.
For a long time, I thought I should not make mistakes when teaching other develop
Real Python: The Real Python Podcast – Episode #147: Django Deployment Strategies & Preparing for PyCascades 2023

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

Have you decided how you're going to deploy your Django project? Should you use a VPS or a PaaS? Christopher Trudeau is back this week, bringing another batch of PyCoder's Weekly articles and projects
Stack Abuse: Loading a Pretrained Tensorflow Model into TensorFlow Serving

Link: https://stackabuse.com/loading-a-pretrained-tensorflow-model-into-tensorflow-serving/

Introduction
You are part of a project that will use deep learning to try to identify what is in images - such as cars, ducks, mountains, sky, trees, etc.
In this project, two things are important - t
EuroPython: EuroPython February 2023 Newsletter

Link: https://blog.europython.eu/europython-march-2023-newsletter/

Dobrý den!It’s March already, the days are flying by and EuroPython in Prague will soon be here! So, what’s been going on? 🐍 EuroPython 2023 Conference Update🇨🇿 PragueSince our last newsletter, where
Python for Beginners: Add Column to Pandas DataFrame in Python

Link: https://www.pythonforbeginners.com/basics/add-column-to-pandas-dataframe-in-python

Pandas dataframes are used to handle tabular data in python. Sometimes, we need to create new columns in the dataframe for analysis. This article discusses how to add a column to pandas dataframe in p
Go Deh: Function purity and idempotence

Link: http://paddy3118.blogspot.com/2023/03/function-purity-and-idempotence.html

 Someone mentioned idempotence at work. I looked it up and noted that it too is a property of functions, like function purity.I decided to see if I could write functions with combinations of those pro
PyBites: Jim Hodapp on coaching software engineers and the power of Rust

Link: https://pybit.es/articles/jim-hodapp-on-coaching-software-engineers-and-the-power-of-rust/

Watch here:


Or listen here:

This week we have Jim Hodapp on our podcast.
We talk about his career journey going from software engineer + manager to full-time developer coach, some of the tactics he
Pythonicity: Decorator overuse

Link: https://coady.github.io/posts/decorator-overuse.html

Decorators versus blocks and partial functions.
Decorators are a beloved feature of Python, but like any good thing can be overused. The key is acknowledging that decorators are just functions.

A fun
Brian Okken: Test & Code Returns

Link: https://pythontest.com/test-and-code-returns/

Did I get the title right?
I’m not sure. Maybe I should have replaced “returns” with reimagined, revisited, continued, expanded, focused, or something even more descriptive that could help me with dir
Test and Code: 194: Test & Code Returns

Link: https://testandcode.com/194

A brief discussion of why Test & Code has been off the air for a bit, and what to expect in upcoming episodes.Links:Python Testing with pytest, 2nd EditionGetting started with pytest Online CourseSoft
Python GUIs: Working With Classes in Python and PyQt

Link: https://www.pythonguis.com/tutorials/python-classes/

Python supports object-oriented programming (OOP) through classes, which allow you to bundle data and behavior in a single entity. Python classes allow you to quickly model concepts by creating repres
Mike Driscoll: PyDev of the Week: Janos Gabler

Link: https://www.blog.pythonlibrary.org/2023/03/06/pydev-of-the-week-janos-gabler/

This week we welcome Janos Gabler (@JanosGabler) as our PyDev of the Week! Janos is the creator of estimagic, a Python package for nonlinear optimization. You can catch up with Janos on his website or
Real Python: What's a Python Namespace Package, and What's It For?

Link: https://realpython.com/python-namespace-package/

Python namespace packages are an advanced Python feature. You may have heard them mentioned in relation to the __init__.py file. Specifically, if you don’t include at least an empty __init__.py file i
Python Does What?!: Annotation Inheritance

Link: https://www.pythondoeswhat.com/2023/03/annotation-inheritance.html

Let's talk about annotations. Type annotations in Python are mostly a static declaration to a type-checker like mypy or pyrightabout the expected types. However, they are also a dynamic data struct
Python for Beginners: Pandas Insert Columns into a DataFrame in Python

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

We use a pandas dataframe to store and manipulate tabular data in python. In this article, we will discuss how to insert a new column into the pandas dataframe using the insert() method.
Table of Cont
Stack Abuse: Guide to Tuples in Python

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

Introduction
Welcome to the world of Python tuples, where parentheses are the key to unlocking the power of data organization and manipulation! As a Python programmer, you might already be familiar wi