+-----------+ | PolyPynet | 0.33 +-----------+ Compatibility library for Python calculator scripts Put the 3-4 following files on the used device : - ppn.py - ppn_all.py - the ppn_ script(s) matching the used device : -- ppn_cas.py : Casio Graph 90/35+E II / fx-CG50 / USB Power Graphic 3 -- ppn_ce.py : TI-83 Premium CE / 84+ CE Python Edition -- ppn_cpns.py : ordinateur + TI-Nspire Ndless -- ppn_cp.py : computer -- ppn_ns : TI-Nspire Ndless -- ppn_nw : NumWorks Developer, to make your scripts compatible with all previous devices, just import ppn instead of your device specific library, nothing else to do just go on coding with your specific library functions. Examples : import kandinsky -> import ppn import kandinsky as plt -> import ppn as plt from kandinsky import * -> from ppn import * from kandinsky import set_pixel -> from ppn import set_pixel import casioplot -> import ppn import casioplot as plt -> import ppn as plt from casioplot import * -> from ppn import * from casioplot import set_pixel -> from ppn import set_pixel import ti_graphics -> import ppn import ti_graphics as plt -> import ppn as plt from ti_graphics import * -> from ppn import * from ti_graphics import setPixel -> from ppn import setPixel