Metadata-Version: 2.1
Name: hui
Version: 0.1.1
Summary: UNKNOWN
Home-page: https://github.com/slonser/hui
Author: Slonser
Author-email: slonser@slonser.info
License: MIT
Download-URL: https://github.com/Slonser/hui/archive/v_01.tar.gz
Keywords: HTML,hui,HTML GUESSER,HTML identifier
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Html Universal Identifier
This is an alpha version of an application for identifying a server-side HTML parser.


# Example
```python
from hui.identify import Identifier
import requests

def handler(payload):
    return requests.get("http://localhost:3005/sanitize",params={"html":payload}).text

a = Identifier(handler=handler)
print(a.identify())
print(a.ALLOWED_TAGS)
```

# Install 
```
pip install hui
```

