These are a few random projects. They range from very useful to totally frivolous. Consider them all to be under the GPL.
This is the README file for the LogoText python module.
It endeavors to be the Most Useless Python Module Ever.
Have fun with it. It's distributed under the GNU Public License.
Brian Hone 3/24/2002
Overview:
========
Do you remember logo? If so, you probably remember typing
commands on your Commodore 64 like:
o move turtle up
o pen up
o pen down
So, I noticed there's a logo module for python in the man distribution,
and out of sheer boredom one day, wrote this module.
LogoText is a text parsing/display module using the python logo module.
Here's some example code:
from logotext import logotext
# open our display:
a = logotext()
# write strings of text:
a.writeWords('I need to get out more')
# write text yourself:
a.newLine()
a.newLetter()
a.f()
a.newLetter()
a.o()
a.newLetter()
a.o()
TODO:
====
I don't know, maybe international support. Random size of letters support. Fonts. More characters. Or, I could get out more.
| logotext | index /Users/bhone/projects/LogoText/logotext.py |
| Modules | ||||||
| ||||||
| Classes | ||||||||||
| ||||||||||
| Data | ||
| __file__ = './logotext.pyc' __name__ = 'logotext' | ||