https://github.com/wavebeem/pypixel
A simple graphics library for Python
https://github.com/wavebeem/pypixel
Last synced: 11 months ago
JSON representation
A simple graphics library for Python
- Host: GitHub
- URL: https://github.com/wavebeem/pypixel
- Owner: wavebeem
- License: lgpl-2.1
- Created: 2011-02-21T00:56:01.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2016-12-15T21:21:33.000Z (over 9 years ago)
- Last Synced: 2025-07-14T14:41:40.048Z (12 months ago)
- Language: Python
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.txt
Awesome Lists containing this project
README
# NO LONGER IN DEVELOPMENT
# Welcome to pypixel!
**For more information on pypixel, go to
[the pypixel wiki](https://github.com/saikobee/pypixel/wiki),
and watch Brian Mock's
[presentation on pypixel](http://vimeo.com/20999218)
at the 2011 SuperQuest
technology education conference.**
## Author
[Brian Mock](http://willamette.edu/~bmock)
## Installation
As of writing, the whole pypixel library is one single Python file: `pypixel.py`. There is also an examples directory with example code written with pypixel that you can run. Users can simply copy `pypixel.py` to the directory with their code in it and start using it.
## Documentation
From inside the Python interactive interpreter:
import pypixel
help(pypixel)
or simply type
pydoc pypixel
from the command line.
This will use the built-in doc-strings in pypixel to let your browse the class documentation.