DEV Community

Discussion on: What I learned from python app distribution

Collapse
 
philipstarkey profile image
Phil Starkey

If you really want to protect your code you should consider writing it in cython and compiling it to a (platform dependent) .pyd file that can be imported into standard Python using the usual import syntax.

Collapse
 
dongchaochen profile image
Dongchao (Alan) Chen

Agree and thanks, I will go to give a try.