Hallo folks,
i'm quite new to python at all, but never the less i want to develope a
standalone application which makes some use of the module mechanize.
right now the only source code of myApp.py is:
[code]
import mechanize
[/code]
running this in a python shell works fine.
now i build a sta
On Sep 15, 2008, at 10:36 AM, [EMAIL PROTECTED] wrote:
setup.py looks like this:
[code]
from setuptools import setup
APP = ['myApp.py']
DATA_FILES = []
OPTIONS = {'argv_emulation': True}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
Could somebody please tell me why I get this error?
>>> import findertools
>>> findertools.sleep()
Traceback (most recent call last):
File "", line 1, in
findertools.sleep()
File
"/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-mac/findertools.py",
line 80, in sleep
In article
<[EMAIL PROTECTED]>,
"Rajanikanth Jammalamadaka" <[EMAIL PROTECTED]> wrote:
> Could somebody please tell me why I get this error?
>
> >>> import findertools
> >>> findertools.sleep()
[...]
The simple answer is: don't use findertools, or most other MacPython
modules for that matter.
Thanks for the answers Ned.
Regards,
Raj
On Mon, Sep 15, 2008 at 10:42 PM, Ned Deily <[EMAIL PROTECTED]> wrote:
> In article
> <[EMAIL PROTECTED]>,
> "Rajanikanth Jammalamadaka" <[EMAIL PROTECTED]> wrote:
>
>> Could somebody please tell me why I get this error?
>>
>> >>> import findertools
>> >