py2exe (Windows) and py2app (Mac) are probably what you are looking for.
Rohan Hole wrote:
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 twit
On Wed, Mar 4, 2009 at 11:38 AM, Rohan Hole wrote:
> 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
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