🐍 Python Projects Overview

Welcome to the central hub for my Python development journey. This page categorizes my scripts, tools, and applications based on their complexity and use case.


🚀 Active Projects

Project Name Description Status
Project Alpha A web scraper for tracking price changes. 🟢 Stable
DataCrunch Automating CSV cleanup and analysis. 🟡 In Progress
Wiki-Bot A script to auto-generate wiki summaries. 🔴 Planning

🛠 Project Categories

1. Automation & Scripting

Small scripts designed to save time and "automate the boring stuff." * File Organizer: Automatically sorts downloads by file extension. * Bulk Renamer: Renames thousands of photos based on metadata.

2. Web Scraping

Tools built using BeautifulSoup or Selenium to gather data from the web. * News Aggregator: Scrapes headlines from tech blogs and saves them to a daily log.

3. Data Science

Notebooks and scripts that visualize data using Pandas and Matplotlib. * Stock Tracker: Visualizes 30-day trends for selected tickers.


📂 Standard Project Structure

Every project in this wiki follows a consistent layout to ensure maintainability:

```text project-name/ ├── src/ # Source code (.py files) ├── data/ # Input/Output data (CSVs, JSON) ├── tests/ # Unit tests ├── requirements.txt # Dependencies └── README.md # Quick start guide