Re: How to create Standalone PYC File

2009-03-04 Thread Shane Geiger
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

Re: How to create Standalone PYC File

2009-03-04 Thread Chris Rebert
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

How to create Standalone PYC File

2009-03-04 Thread Rohan Hole
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