Metadata-Version: 2.4
Name: hwuncommenter
Version: 1.0.0
Summary: Universal comment remover for any programming language
Home-page: https://github.com/MalikHw47/hwuncommenter
Author: MalikHw47
Author-email: MalikHw47 <Help.malicorporation@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/MalikHw47/hwuncommenter
Project-URL: Bug Reports, https://github.com/MalikHw47/hwuncommenter/issues
Project-URL: Source, https://github.com/MalikHw47/hwuncommenter
Keywords: comment remover,code cleanup,source code,programming tools
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# HwUncommenter

Universal comment remover for any programming language. Remove ALL comment lines from your source code files with a single command!

## Features

- 🚀 **Universal Support**: Works with ANY programming language
- 🔧 **Smart Detection**: Recognizes different comment styles
- 💯 **Complete Removal**: Removes ALL types of comments
- 🛡️ **Safe Processing**: Preserves string literals and code structure
- ⚡ **Fast & Efficient**: Process files quickly
- 🎯 **Simple Usage**: One command, instant results

## Supported Languages

- **C/C++**: `//` and `/* */`
- **Python**: `#` and `"""` docstrings
- **JavaScript/Java**: `//` and `/* */`
- **HTML/XML**: `<!-- -->`
- **CSS**: `/* */`
- **SQL**: `--` comments
- **Shell/Bash**: `#` comments
- **And many more!**

## Installation

```bash
pip install hwuncommenter
```

## Usage

```bash
HwUncommenter filename.py
HwUncommenter script.js
HwUncommenter style.css
HwUncommenter any_file.any_extension
```

## Examples

**Before:**
```python
# This is a comment
def hello():  # Another comment
    """This docstring will be removed"""
    print("Hello World")  # Inline comment
```

**After:**
```python
def hello():
    print("Hello World")
```

## About

**HwUncommenter** by **MalikHw47** - Making code cleaner, one file at a time!

## License

MIT License - feel free to use and modify!
