Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.02 KB

File metadata and controls

24 lines (18 loc) · 1.02 KB

🐍 Python Automation Scripts

A collection of high-utility scripts designed to solve real-world efficiency problems.

📂 Project 1: File Organizer

The Problem: Downloads and working directories often become cluttered with mixed file types, reducing productivity. The Solution: An automated script (file_organizer.py) that scans a directory and intelligently sorts files into folders (Images, Docs, Code, etc.) based on extension.

🚀 How to Run

  1. Clone the repo.
  2. Run python file_organizer.py in the target directory.
  3. Watch your files get organized instantly!

*Created by N9sha18

📂 Project 2: Web Scraper

The Problem: Collecting data (like prices, quotes, or news) manually is tedious and error-prone. The Solution: A script (web_scraper.py) that utilizes BeautifulSoup to parse HTML and extract structured data into a CSV file.

🚀 How to Run

  1. Install dependencies: pip install -r requirements.txt
  2. Run python web_scraper.py
  3. Check quotes_data.csv for the results.