Draw in terminal
Project description
Termp
Drawing in the terminal
Install
pip install --upgrade termp
Usage
from Termp import *
Create a text picture:
t = termp(50,50)
# Create a 50 × 50 text image
Draw:
t.line(0,0,49,49)
t.circle(25,25,10)
t.rect(0,0,49,49)
t.fill(30,5, "#")
t.fill(20,30, "#")
Result:
t.print()
Convert Pictures
- with color
t = termp(140, 140)
t.image("file.jpg", 139, color=True)
- without color
t = termp(140, 140)
t.image("file.jpg", 139)
- color filter picture
t = termp(140, 140)
t.image("file.jpg", 139)
t.givecolor("green")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
termp-0.2.14.tar.gz
(3.7 kB
view hashes)