I am trying to create a stand alone application for a windows computer I am trying to use the following modules:
- os
- system
- threading
- time
But it is not allowing me to import any of these modules it doesn't give me an error code or anything it just will not load the modules into the file! from distutils.core import setup import py2exe
setup(console=['Evil_unlocker_final.py']
options={
"os":{
"unbuffered": True,
"optimize": 2
}
"sys":{
"unbuffered": True,
"optimize": 2
}
}
)