Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.65 KB

File metadata and controls

59 lines (42 loc) · 1.65 KB

Python Scripts Index

This directory contains Python scripts contributed to the Code_Script repository.

📚 Available Scripts

1. Image Resizer & Compressor

Path: Python/ImageResizerCompressor/
Description: Bulk image resizing and compression tool using Pillow and OpenCV
Features:

  • Resize images by width, height, or percentage
  • Compress images with quality control
  • Support for multiple formats (JPG, PNG, BMP, WEBP, TIFF)
  • Batch processing capabilities
  • Two processing methods (Pillow and OpenCV)

Usage: See ImageResizerCompressor/README.md


2. QR Code Scanner

Path: Python/qr_code_scanner/
Description: Simple script that scans and decodes QR codes from image files.
Features:

  • Detects and decodes one or multiple QR codes in an image
  • Displays decoded text or URL directly in the terminal
  • Uses opencv-python, pyzbar, and Pillow
  • Beginner-friendly and easy to extend

Usage: See qr_code_scanner/README.md


🚀 How to Use

Each script has its own directory with:

  • Main script file(s)
  • README.md with detailed instructions
  • requirements.txt (if dependencies needed)
  • Example usage files

Navigate to the script's directory and follow the README instructions.

🤝 Contributing

Want to add a new Python script?

  1. Create a new directory under Python/
  2. Add your script with clear comments
  3. Include a detailed README.md
  4. Add requirements.txt if needed
  5. Update this INDEX.md file
  6. Submit a Pull Request

See CONTRIBUTING.md for more details.


Last Updated: October 7, 2025