Programming
Understanding SQLAlchemy’s Declarative Base and Metadata in Python
A deep dive into SQLAlchemy’s declarative base and metadata and providing practical Python examples to illustrate their use.
pythondatasoftware-development
SQLAlchemy vs. Raw SQL Queries in Python: A Comparative Example
Explore the distinctions between SQLAlchemy queries and raw SQL queries through a comprehensive end-to-end example.
pythondatabasesoftware-development
IIT Madras Data Science Degree: Is It Right for You? Let’s Explore through my experience!
iitdata-scienceprogramming
How to Implement Pub/Sub with Redis in Python and Its Advantages
A guide to implementing the Publish/Subscribe pattern with Redis in Python.
pythonredisprogramming
The Mysteries of Floating-Point Numbers
Exploring the Fascinating World of Computational Precision
pythoncomputer-scienceprogramming
Data Transfer Object in Django, DRF
A guide to implementing the Data Transfer Objects (DTO) Pattern in Django
pythondjangoclean-code-architecture
F-Strings: A Powerful and Easy Way to Format Strings in Python
A to Z of F-Strings: Tricks and tips that you can use with f-strings to make your string formatting easier and more powerful
pythonprogrammingsoftware-development
Proper Way of Using Google Authentication with Django and Django-allauth.
djangoauthenticationdjango-allauth
Effortless Exception Error Handling in FastAPI: A Clean and Simplified Approach
Implementing a middleware that displays the errors in a more concise and organized manner.
python-programmingfastapiprogramming
Managing API Keys and Secrets in Python Using the Dotenv Library: A Beginner’s Guide
A guide to using the library python-dotenv for managing API keys and secrets.
pythonprogrammingcoding