Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 426 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 426 Bytes

m3py

Minimal "Pseudo" Processing API module, based on tkinter, for Python.
This module is being developping for teaching python for others.

How to install

pip install m3py (under construction)

How to use

import m3py as m3
m3.rect(10, 10, 100, 100)
run()
from m3py import *
rect(10, 10, 100, 100)
run()
from m3py import *
def mouseClicked(x, y):
    line(100, 100, x, y)
run()