Turn Python Kivy program into C code -
i thinking of developing python program gui library such kivy. program commercial, protect source code. there other methods of protection including license keys , license servers, , these employed well. know cython compiles python code c. possible have code converted c?
edit: asked example code. here basic example kivy website:
import kivy kivy.require('1.0.6') # replace current kivy version ! kivy.app import app kivy.uix.label import label class myapp(app): def build(self): return label(text='hello world') if __name__ == '__main__': myapp().run()
yes. more information, read cython documentation.
Comments
Post a Comment