Metadata-Version: 2.1
Name: termp
Version: 0.1.2
Summary: Draw in terminal
Home-page: https://github.com/dmitrijkotov634/Termp
Author: dmitrijkotov
Author-email: dmitrijkotov634@mail.ru
License: MIT
Keywords: Draw in terminal
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: termcolor

# Termp
Drawing in the terminal

*Installation*:  
`pip install --upgrade termp`

*Import*:
```python
from Termp import *
```

*Create a text picture*:
```python
t = termp(50,50)
# Create a 50 × 50 text image
```
*Draw*:
```python
t.line(0,0,49,49)
t.circle(25,25,10)
t.rect(0,0,5,5)
```
*Result*:
```python
t.print()

