Metadata-Version: 2.1
Name: pyAsciiEngine
Version: 0.0.5
Summary: Ascii games engine
Home-page: https://github.com/Arizel79/pyAsciiEngine
Author: Arizel79
Author-email: arizel79@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://github.com/Arizel79/pyAsciiEngine
Keywords: ascii,ascii game
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: windows-curses==2.4.0

# pyConsoleEngine
Ascii engine for drawing in console. Based on curses library

by [@Arizel79](https://t.me/Arizel79)

## Install
```
pip install pyAsciiEngine
```
## Example:
```python
from pyAsciiEngine import AsciiScreen, Colors
scr = AsciiScreen()

scr.setStr(5, 5, "Hello, world! Prees Q to exit", Colors.RED)
while True:
    key = scr.wait_key()
    if key == "q":
        break
        

```




