The Django auth app makes authenticating users easy to do. Learn how to enable log in and logout functionality to a Django site.
Category: Python
PyCon Africa Recap
In August 2019 I attended PyCon Africa in Ghana. I enjoyed the…
Python: Get password from terminal without echoing
This is a short article about how to get a password from the terminal without echoing it back to the user as they type.
Working with the requests library
The requests library is one of the most popular Python libraries available. In this article, you’ll learn how to use requests to fetch resources from the web and also to interact with websites.
Interview With Ewa Jodlowska, PSF Executive Director
An interview with Ewa Jodlowska, Executive Director of the Python Software Foundation. We talk about the PSF, insights from the Python Developer Survey and more.
Custom template tags in Django
Learn how you can extend the Django template engine by defining custom template tags using Python, and then make them available to your templates using the {% load %} tag.
PyCon Africa Day 1
Thursday August 9 2019 was the second day of PyCon Africa in…
Creating and updating records using Django’s database API.
This article covers 6 common methods found in the Django Database API for creating, retrieving, and updating records.
Python hasattr() Function
A useful built in function in Python is hasattr(). This function is…
Django static page
In this article you’ll learn how to create a Django website with a static page using Function Based Views and Class Based Views.