Posts

Showing posts with the label Coding Shorts

Python Web Scraper + Auto Scheduler GUI | Requests + BeautifulSoup + Tkinter

Image
  Demo : Click Video 👇👇👇 Features: ✔️ Share buttons ✔️ Featured Image (Thumbnail) ✔️ SEO Meta Description (same as YouTube description first 150 chars) Content: Embed YouTube Short + Explanation + Code Snippet + Screenshots Code : import requests from bs4 import BeautifulSoup import pandas as pd from datetime import datetime from apscheduler.schedulers.background import BackgroundScheduler import customtkinter as ctk from tkinter import messagebox ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") URL = 'https://books.toscrape.com/catalogue/a-light-in-the-attic_1000/index.html' HEADERS = {     'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } CSV_FILE = 'products.csv' def scrape_product():     try:         response = requests.get(URL, headers=HEADERS)         if response.status_code == 200:             soup = BeautifulSoup(response.content, 'html.parser')...

Create a Mini File Explorer in Python + CTkinter GUI | Modern File Manager Clone

Image
  Demo : Click Video 👇👇👇 Featured : Thumbnail of “Modern File Explorer UI” (with 📂📄 icons + dark theme text overlay: “Mini File Explorer in Python + CTkinter” ). Features: ✅ Title + Embed YouTube Short ✅ Source Code (full script with highlights) ✅ Step-by-step explanation ✅ Call to action (Subscribe + Follow on socials) Code : import os import shutil import tkinter as tk from tkinter import filedialog, messagebox import customtkinter as ctk # --------------------------- # Modern Mini File Explorer # --------------------------- class FileExplorer(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu File Explorer")         self.geometry("600x600")         self.minsize(650, 500)         ctk.set_appearance_mode("dark")         ctk.set_default_color_theme("blue")         self.current...

React Native Orb Loader – Glow UI Animation | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🌟 Featured : 🔁 Looping Orb Spin Animation 💡 Typewriter-style text 🌈 Gradient overlays with glow effects 📱 Ideal for splash screens 🔧 Tools Used: React Native, Animated API, Easing, JS, CSS-like styles Code : OrbLoader.js import React, { useRef, useEffect, useState } from 'react'; import { View, StyleSheet, Animated, Easing, Dimensions, Text, } from 'react-native'; const { width } = Dimensions.get('window'); const SIZE = 250; const RADIUS = SIZE / 2; const OrbLoader = () => { const rotateAnim = useRef(new Animated.Value(0)).current; const pulseAnim = useRef(new Animated.Value(1)).current; const [displayText, setDisplayText] = useState('Loading...'); const fullText = 'Loading...'; useEffect(() => { // Rotation animation Animated.loop( Animated.timing(rotateAnim, { toValue: 1, duration: 4000, easing: Easing.linear, useNativeD...