Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Matt Layman: Settings and Billing Portal - Building SaaS with Python and Django #190

Link: https://www.mattlayman.com/blog/2024/settings-and-billing-portal-building-saas-with-python-and-django-190/

In this episode, I worked on the settings page for the user. This was a vital addition because it allows users to access the Stripe billing portal and close their account if they no longer wish to use
Python Morsels: Assignment vs. Mutation in Python

Link: https://www.pythonmorsels.com/assignment-versus-mutation/

In Python, "change" can mean two different things. Assignment changes which object a variable points to. Mutation, changes the object itself.



Table of contents

Remember: variables are pointers
Mut