I have two brief question:
- Is there a way that I can click on my script and get the cmd prompt to start (I’m using Python cmd; a command line in dos)?
- Can I lock down my script so no one can look at it, or at least change anything?
Cheers!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems you are shipping your code to third parties. If you don’t want them to look at your code you can create a frozen binary. This creates a .exe that can’t be just opened with notepad and edited.
Note that this isn’t a very secure way, they can still extract the code out of it, if they are skilled.