Author name: Bunty Singh

Plant Identification Web App Using Django

Introduction: Django is a high-level web framework designed for rapid development and clean, pragmatic design. It’s built on Python and follows the model-template-view (MTV) architectural pattern, which separates application data, user interface, and business logic, making the codebase more organized and manageable. Let’s build a plant identification web app. In this project, we’ll develop a …

Plant Identification Web App Using Django Read More »

To Do list GUI app using Tkinter in Python (Pie chart included) – Full code

In this post, I am going to share with you the full Python code of a Tkinter GUI application, which is a to-do app. This code is straightforward to understand. The following steps make it easy to understand this code as follows: Pie chart to show the percentage of task completion, remaining tasks, and skipped …

To Do list GUI app using Tkinter in Python (Pie chart included) – Full code Read More »

Get Official Website URL From Company Name In Python

from googlesearch import search def get_website(company_name): combine = f”{company_name} official website” for i in search(combine,num_results=1): print(i) while True: print(“MENU”) print(“1. Get The Official Website URL”) print(“2. Exit The Program”) options=int(input(“Enter The Option[1/2]:”)) if options==1: company_name=input(“Enter The Name Of The Company:”) get_website(company_name) elif options==2: print(“Exiting The Program”) break else: print(“Invalid Option!!! Please Choose 1 or 2.”) …

Get Official Website URL From Company Name In Python Read More »

Scroll to Top