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

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -