Use Celery to make pdf from HTML page February 14, 2025 Why Use Celery in Django? A Complete Guide to Installing and Using Celery 🚀 Django is a powerful web framework for building scalable app...Read More
Connect Google Sheet with python project using Service-Account February 14, 2025 Connecting Google Sheets with Python Using a Service Account 🚀 Google Sheets is a powerful tool for managing data, and integrating it wi...Read More
Count Words in String January 09, 2025 String Count import re def check_status(*args): str = 'catinahat and cat and cat' substring = 'cat|hat' get_value ...Read More
Viewset, ModelViewSet, Mixins January 06, 2025 Interview questions related to viewset viewset.Modelviewset can operate all crud operations? Yes, viewsets.ModelViewSet in Django REST Fr...Read More
Add extra fields in custom user model using AbstractUser January 03, 2025In models.py from django.contrib.auth.models import AbstractUser from django.db import models class CustomUser(AbstractUser): date_of_bi...Read More
Deploy React-Python-MySQL project on EC2 instance January 03, 2025 Deploy React-Python-MySQL project on EC2 instance sudo apt-get install mysql-server sudo systemctl start mysql sudo systemctl enable mysql...Read More