Metadata-Version: 2.4
Name: dirorganizer
Version: 1.0.4
Summary: A simple CLI tool to organize files by extensions
Home-page: https://github.com/SudoRV/fileorganizer
Author: Rahul Verma
Author-email: rahulverma.1.2005@gamil.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

File Organizer CLI 📂

A simple command-line tool to organize files in a directory by extensions. Ideal for Download folders and keeping your workspace clean!

🚀 Features

✔ Categorizes files into folders based on extensions
✔ Supports all file types automatically
✔ Prevents overwriting existing files
✔ Lightweight and fast


---

📥 Installation

1️⃣ Install via pip (Recommended)

pip install dirorganizer

2️⃣ Install from Source

git clone https://github.com/SudoRV/dirorganizer.git
cd dirorganizer
pip install --editable .


---

🔧 Usage

Basic Command:

arrange /path/to/folder

Example:

📂 Before:

Downloads/
├── report.pdf
├── music.mp3
├── photo.jpg

📂 After arrange Downloads/

Downloads/
├── pdf/   → report.pdf
├── mp3/   → music.mp3
├── jpg/   → photo.jpg


---

🛠 Development

To modify the tool, follow these steps:

git clone https://github.com/SudoRV/dirorganizer.git
cd dirorganizer
pip install --editable .

Test your changes using:

arrange /path/to/folder


---

📄 License

This project is licensed under the MIT License.


---

🤝 Contributing

Got ideas or improvements? Feel free to open an issue or submit a pull request! 🚀


---

📌 Notes

Requires Python 3.6+

To uninstall, run:

pip uninstall dirorganizer
