Finishing a python project

Asked

Viewed 187 times

0

I have some questions about the projects created in python.

If I create a program and need to pass it to someone else, I will need the other computer to have python installed and with all the libs I got on the outside?

How do I make the program as an executable for others to access more easily and in a way that they cannot make changes?

I am using sqlite3 as database in this program that I am doing and I want to know if there is a way to leave the database without writing off, just by the program.

I want to learn python sockets and Django and if anyone has any indication, please do!

1 answer

0


Python is an interpreted language, so it needs an interpreter, which comes with the Python package; however, there is how to turn your file into an executable, independent of the operating system; for such action there are some tools, and I can tell you what I use for my scripts, which is "py2exe", which despite the name, has a version compatible with Python 3. I have a great link that will help you in this task:Link to py2exe usage tutorial (is in English but this is easily solved with the translator that comes in Google Chrome). What refers to Socket, has a great link to indicate you:Link to the Socket . I have a good link to tell you about Django:Link do Django . In the issue of sqlite3, yes it is possible, but try to delve into this library through studies, so you will be able to deal with the same better.

I hope I helped! Big hug Thomas!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.