Metadata-Version: 2.1
Name: view.py
Version: 1.0.0a2
Summary: Lightning fast, modern web framework.
Author-email: ZeroIntensity <zintensitydev@gmail.com>
License: MIT
Project-URL: Documentation, https://view.zintensity.dev
Project-URL: Issues, https://github.com/ZeroIntensity/view.py/issues
Project-URL: Source, https://github.com/ZeroIntensity/view.py
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich
Requires-Dist: click
Requires-Dist: typing-extensions
Requires-Dist: ujson
Requires-Dist: configzen
Requires-Dist: psutil
Requires-Dist: plotext

# view.py
## Lightning fast, modern web framework

- [Docs](https://view.zintensity.dev)
- [Source](https://github.com/ZeroIntensity/view.py)
- [PyPI](https://pypi.org/project/view.py)

```py
import view
from view.components import h1

app = view.new_app()

@app.get("/")
async def index():
    return h1("Hello, view.py!")

app.run()
```

### Help! I have too much free time!

Fear not! view.py is currently in a very high alpha stage of development, and always looking for new contributors. If you're interested, you can take a look at the [issues tab](https://github.com/ZeroIntensity/view.py/issues) or [CONTRIBUTING.md](https://github.com/Zerointensity/view.py/blob/master/CONTRIBUTING.md).

### Installation

**CPython 3.8+ is required.**

#### Linux/macOS


```
$ python3 -m pip install -U view.py
```

#### Windows

```
> py -3 -m pip install -U view.py
```

