I have seven python scripts
import nmapper as nmap
import pscan as scan
..
..
etc
How it would be possible to make one single python (.pyc) file of all these 7 modules Note: Whatever I I will import into my 8th script, all I have written.
I have seven python scripts
import nmapper as nmap
import pscan as scan
..
..
etc
How it would be possible to make one single python (.pyc) file of all these 7 modules Note: Whatever I I will import into my 8th script, all I have written.
You can put all the pyc files in a .zip
file and rename the extension .pyc
.
The zip needs to also contain a file __main__.py
.
See What is __main__.py
? for more details.