Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 721 Bytes

File metadata and controls

29 lines (20 loc) · 721 Bytes

🔧 Python CLI Toolkit

A small collection of command-line tools built with Python. Each script is self-contained and easy to use for learning, portfolio, or utility purposes.

🚀 Tools Included

  1. Password Generator – Create strong, random passwords
  2. IP Lookup – Get geolocation and details of any IP using ipinfo.io
  3. Ping Sweeper – Scan a subnet to find online devices
  4. File Hasher – Generate a SHA256 hash of any file

📦 Usage

python3 password_generator.py
python3 ip_lookup.py
python3 ping_sweeper.py
python3 file_hasher.py

✅ Dependencies

Only requests is required (for ip_lookup). Install with:

pip install requests

Happy hacking 💻