When I write program (.py) with IDLE , I am able to use run package .
- - - - start - - - -
if __name__ == '__main__':
import sys,os
import run
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
- - - - end - - - - -
above code works simply with the IDLE.
But problem
I have .py file which uses some third party modules like egg files, like
simplejson and python-twitter ,
- start of file -
import ConfigParser
import getopt
import os
import sys
import twitter
when i compile this py file using compile module , i get .pyc file . Now my
question is , if