Metadata-Version: 2.4
Name: deliverfresh-whatsapp-order
Version: 0.1.7
Summary: Clean and normalize WhatsApp chat orders into structured product lists.
Author-email: Raman Perumal <rperumal3000@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Raman Perumal
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the “Software”), to deal
        in the Software without restriction, including without limitation the rights  
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell  
        copies of the Software, and to permit persons to whom the Software is  
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in  
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE  
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,  
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN  
        THE SOFTWARE.
        
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# 📦 DeliverFreshWhatsAppOrder

Clean and normalize WhatsApp chat orders (in `.txt` format) into structured product lists.

## 🚀 Features

- ✅ Clean WhatsApp chat exports
- 🧹 Remove quantities, duplicates, punctuation
- 📦 Standardize product names (e.g. "tomatoes" → "tomato")
- 🧑‍💻 Built as a `pip`-installable Python package
- 🟢 Works in Google Colab with only file path changes
- 🌐 Documentation in English, Hindi, Tamil, Japanese

## 📦 Installation

```bash
pip install deliverfresh-whatsapp-order
```

# 📄 Usage Example (in Google Colab)

```bash
# 📌 Mount Google Drive
from google.colab import drive
drive.mount('/content/drive')

# 📌 Import and use the package
from deliverfresh_whatsapp_order import clean_chat_file

# ✅ Set paths (editable by user)
input_path = "/content/drive/MyDrive/DeliveryFresh/WhatsAppInput/inputfile.txt"
output_path = "/content/drive/MyDrive/DeliveryFresh/WhatsAppOutput/inputfile_Cleaned.txt"

# 🚀 Run the cleaning
clean_chat_file(input_path, output_path)

print("✅ Cleaning complete. Check your output file.")
```

# 📚 Documentation

Full documentation is available at:

🔗 https://rperumal3000.github.io/DeliverFreshWhatsAppOrder

# 🛠 Contributing

See https://github.com/rperumal3000/DeliverFreshWhatsAppOrder/blob/main/CONTRIBUTING.md for guidelines on how to contribute.

# 🐛 Issues / Feedback

Please open a GitHub Issue at https://github.com/rperumal3000/DeliverFreshWhatsAppOrder/issues
