Metadata-Version: 2.1
Name: entity_everything
Version: 2.0.0
Summary: Python tool for encoding text to HTML entities
Home-page: UNKNOWN
Author: Daniel Rogowski
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# entity-everything
>  Easy to use tool for encoding text to html entities and html entities to normal text. 

## âś¨ Features
1. Encoding & decoding of text passed as an argument
2. Encoding & decoding of text from the standard input

## đź“š Project description
There are plenty of online tools on the Internet for encoding text to html entities. However, the solutions i found have one thing in common: they only convert special characters, without changing letters and numbers.

If for some reason you want to convert letters and numbers to entities as well, "entity-everything" is the script for you.

## đź“š How to download?
Project is available on PyPi, so you can install entity-everything using pip:
```
$ python -m pip install entity_everything
```


## đź”§ How to use?
Encoding text:
```
$ python -m entity_everything encode "Text to encode"
or
$ echo "Text to decoode" | python -m entity_everything encode
```
```
Result: "&#84;&#101;&#120;&#116;&#32;&#116;&#111;&#32;&#101;&#110;&#99;&#111;&#100;&#101;"
```
Decoding text:
```
$ python -m entity_everything decode "&#120;&#120;&#120;"
or
$ echo "&#120;&#120;&#120;" | python -m entity_everything decode
```
```
Result: "xxx"
```


## Technologies used
The script has been written in Python.
It should work with versions 3.9 or higher.
This script does not require any dependencies.


