Skip to main content

Treat strings like Items on a 2D Canvas.

Project description

Version Build Status Codacy Badge

Treat strings like Items on a 2D Canvas

With this primitive library you can do things like this:

from ascii_canvas.canvas import Canvas
from ascii_canvas.item import Item, Line

canvas = Canvas()

rect_a = Item('+-----+\n|Hello|\n+-----+', position=[0, 0])
rect_b = Item('+-----+\n|World|\n+-----+', position=[16, 5])
rect_c = Item('+-+\n|!|\n+-+', position=[32, 0])
line_a = Line(start=[7, 1], end=[15, 6])
line_b = Line(start=[23, 6], end=[31, 1])

canvas.add_item(rect_a)
canvas.add_item(rect_b)
canvas.add_item(rect_c)
canvas.add_item(line_a)
canvas.add_item(line_b)
print(canvas.draw())

Which results in this output:

    0+-----+                         +-+
    1|Hello|----+               +----|!|
    2+-----+    |               |    +-+
    3           |               |
    4           |               |
    5           |    +-----+    |
    6           +----|World|----+
    7                +-----+

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ascii-canvas-1.2.2.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

ascii_canvas-1.2.2-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page