Metadata-Version: 2.4
Name: pyhtmbuilder
Version: 0.1.0
Summary: A simple HTML builder for Python.
Author: Victor Zou
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# pyhtmlbuilder

Build HTML with Python.

## Installation

```bash
pip install pyhtmbuilder
```

## Example

```python
from pyhtmbuilder import *

html = Html(
    Head(),
    Body(
        Div(
            H1("Hello World"),
            P("Built with pyhtmbuilder")
        )
    )
)

print(html)
```

Output:

```html
<html>
<head>

</head>
<body>
<div>
<h1>Hello World</h1>
<p>Built with pyhtmbuilder</p>
</div>
</body>
</html>
```

## Features

- Simple API

- Pure Python

- HTML Tree Structure

- Export to `.html` files

## Current Tags

### Container Tags

- Html

- Head

- Body

- Div

### Text Tags

- H1

- P

## Requirements

Python 3.10+

## License

MIT License
