File Metadata Viewer — Python Tkinter App to Inspect Files (SHA256, EXIF, Export JSON) — FuzzuTech
Demo : Click Video 👇👇👇 Description : File Metadata Viewer — Inspect any file with a modern Tkinter GUI: SHA256, MIME, EXIF, preview & export JSON. Python + Pillow + pyperclip demo by FuzzuTech. Features : Modern dark Tkinter GUI for quick file inspection Shows file name, full path, human-readable size Displays created / modified / accessed timestamps Detects MIME type & extension Computes SHA256 hash (chunked reading) EXIF extraction & image preview (Pillow) Export metadata as pretty JSON Copy values to clipboard (pyperclip) Lightweight, single-file demo ( main.py ) + sample assets Code : """ FileMetadataViewer - Modern Tkinter GUI Author: Fuzzu Developer (add your name) Run: python main.py Requires: pillow, pyperclip """ import os import sys import json import mimetypes import hashlib import platform from datetime import datetime import tkinter as tk from tkinter import ttk, filedialog, messagebox from tkinter....