Metadata-Version: 2.1
Name: innerhtml
Version: 0.0.1
Summary: HTML for humans.
Home-page: https://github.com/ArticOff/innerhtml
Author: Artic#3065
Author-email: artic.admisoffi@gmail.com
Maintainer: Artic#3065
Maintainer-email: artic.admisoffi@gmail.com
License: MIT
Project-URL: Source, https://github.com/ArticOff/innerhtml
Project-URL: Discord, https://articoff.github.io/discord
Project-URL: Tracker, https://github.com/ArticOff/innerhtml/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown


# innerhtml

HTML for humans.


## Authors

- [@ArticOff](https://www.github.com/ArticOff)


## Installation

Install innerhtml with pip

```bash
# Linux/macOS
python3 -m pip install -U innerhtml

# Windows
py -3 -m pip install -U innerhtml
```
    
## Usage/Examples

```python
import requests

from innerhtml import parse

response = get("https://articoff.github.io/eggs/")

page = parse(response.content)

for element in page.elements:
    if element._type == "h1":
        print(element.content)
```

```python
from innerhtml import parseHtml

with open("index.html", "r") as file:
    page = parseHtml(file)
    file.close()

for element in page.elements:
    if element._type == "h1":
        print(element.content)
```

## Feedback

If you have any feedback, please reach out to us on [our discord](https://articoff.github.io/discord)

## Links

- [Official discord server](https://articoff.github.io/discord)
- [CodeSec Community](https://articoff.github.io/codesec)

