Metadata-Version: 2.1
Name: zenaura
Version: 0.9.105
Summary: Zenaura is an experimental Python library built upon PyScript, designed to empower Python developers to create stateful, component-based Single Page Applications (SPAs). By leveraging a virtual DOM implementation, Zenaura optimizes the performance, reactivity, responsiveness, and interactivity of web applications. This allows developers to build high-performance, dynamic web applications using familiar Python concepts and syntax.
Author: Ahmed Rakan
Author-email: ar.aldhafeeri11@gmail.com
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bleach ==6.1.0
Requires-Dist: flask ==2.3.3
Requires-Dist: flask-sock ==0.7.0
Requires-Dist: watchdog ==4.0.1

# Zenaura 

<img title="a title" alt="Alt text" src="./assets/logo.png" width="300" height="300" />

Zenaura is an experimental Python library built upon PyScript, designed to empower Python developers to create stateful, component-based Single Page Applications (SPAs). By leveraging a virtual DOM implementation, Zenaura optimizes the performance, reactivity, responsiveness, and interactivity of web applications. This allows developers to build high-performance, dynamic web applications using familiar Python concepts and syntax.

## Quick Example : 

```Python
	    
```

# testing 
- install requirements 
```
pip install -r requirements.txt 
```
- run tests with coverage : 
```
python -m coverage run -m unittest
```

- run test coverage report :
```
python -m coverage report -m
```

- report 
```
-----------------------------------------------------------
zenaura\client\compiler.py       46      5    89%   38-39, 66, 88, 119
zenaura\client\component.py      22      2    91%   24, 34
zenaura\client\dom.py            50      2    96%   68, 71
zenaura\client\tags.py          144      3    98%   9-11
-----------------------------------------------------------
```

- important note : test coverage must be kept at 95%

# run example :

cd to examples folder
cd into example folder 
run 
```
flask --app hello run
```
