A processing like sketch framework for prototyping.
Project description
Warning
This project is deprecated. Due to bugs and incoherency, as well as a relatively poorly though interface I decided to deprecate this project. A better scoped, better designed version may come later.
What is this ?
sketcher is a python module which may be used to quickly create littles program (sketches) that produce graphical output. It is obviously deeply inspired by processing and try to get the same feeling in the python world. It is different from processing.py in that it has no dependencies to Java environnement and it use a more Pythonic approach of a sketch. By the way sketcher does not try to stick to the processing API but a lot of methods names are the same.
How to install it ?
The simpliest way to install this is to use pip.
Run $ pip3 install sketcher
and that is all.
You could also copy the sketcher folder from this repository and put it in your sketches directory.
How to use it ?
A basic sketch consist in a class of arbitrary name having two methods setup and loop. The class have to be decorated by the decorator sketch from the sketcher module. Here is the default empty sketch :
from sketcher import sketch
@sketch
class Sk:
def setup(self):
pass # Here come the initialisation
def loop(self):
pass # Here come the per-frame actions
In the loop and setup methods you have access to all the useful methods from the Sketch class (thanks to the decorator) to produce graphical output and more.
Then you can run a sketch like this :
$ python3 path/to/your/sketch.py
Further explanations are available here.
About graphical backend
To produce graphical output sketcher can use different backends. For now tkinter and pyglet are implemented. The two backends expose roughly the same features however some differences remains. If you notice any let me know so I can improve the compatibility.
Contribute
Any kind of contribution is welcomed. You could propose a new graphical backend or extend the functionnalities of sketches. Please contact me if you are intereseted.
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 Distributions
Built Distribution
File details
Details for the file sketcher-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: sketcher-1.0.3-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9e2f1fd7105c9b3f5264766b1ce2cab1ee6452f97b878e14d43266c184b3e1d |
|
MD5 | c07301524996fa8f31f0c0192add1ce4 |
|
BLAKE2b-256 | 52e28a143d93fe81a104e71a9bbab61473ab59408594ad8fa708083f3d1efde3 |