Python Interpreter with Kivy 1.5

License: Free ‎File size: 8.39 MB
‎Users Rating: 0.0/5 - ‎0 ‎votes

ABOUT Python Interpreter with Kivy

SourceCode : https://github.com/terrorgun/Python_Interpreter

It is Python interpreter for Android.It is Python REPL.It is Python IDE and contain some tutorial.It offers a great learning experience for Python beginners.It is written in python using the Kivy framework. (http://kivy.org)Kivy is cross platform greate NUI framwork.

You can test kivy like this.

# import kivy modulesimport kivyfrom kivy.core.window import Windowfrom kivy.uix.button import Button

# get rootroot = Window.get_parent_window()

# creat buttonbtn = Button(text="button test", pos=(200,500), size_hint=(None, None), size=(300,150))

# show buttonroot.add_widget(btn)