Metadata-Version: 2.1
Name: pycommremover
Version: 0.2
Summary: Library to remove block and line comments.
Author-email: "Carlos A. Planchón" <carlosandresplanchonprestes@gmail.com>, Agustín Céspedes <agustinces17@gmail.com>
License: MIT License
Project-URL: repository, https://github.com/carlosplanchon/pycommremover.git
Keywords: comment,remover
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# pycommremover
*Python3 Module to convert from duration to date and time.*

## Installation
### Install with pip
```
pip3 install -U pycommremover
```

## Usage
```
In [1]: import pycommremover

In [2]: text = """
print("First line")

\"\"\"

print("Commented line.")

'''
print("Commented line 2.")

print("Commented line 3.")

# Single line comment 1.
'''

# Single line comment.
print("Commented line 4.")

\"\"\"

# Single line comment 2.

print("Commented line 5")
"""

In [3]: output = pycommremover.remove_comments(text=text)


In [4]: print(output)

print("First line")





print("Commented line 5")


```
