Skip to content

tristanarthur/towpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TOW.PY

TOW.PY (text only window) is a simple, toy python library that allows for text-based graphical applications to be prototyped and developed. It has been built on top of pygame but developed as to abstract its methods away.

Setup

TOW.PY can easily be installed with pip. pip install towpy

Code Example

import towpy

tow = towpy.TextOnlyWindow()

txt_obj = towpy.TextObject(["Hello", "World"], (10, 10))
tow.add_object(txt_obj)

tow.run()

About

A very simple toy library to quickly create live-text-based games.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages