[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-09 Thread satish
I am using bash shell on Mac and I've set PYTHONPATH but i am still getting "No module named main" error. I am probably doing something wrong. On Apr 9, 6:43 pm, satish wrote: > Jeff, thank you for your response. I tried "import main" but now I get > this error > --- > import main > ImportErro

[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-09 Thread satish
Jeff, thank you for your response. I tried "import main" but now I get this error --- import main ImportError: No module named main --- >From the shell, i changed to the directory in which i have my loader file and ran this command bulkloader.py --config_file=aliascommand_loader.py -- filename=a

[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-09 Thread Jeff S
Hi satish, In your aliascommand_loader.py, the following import looks suspicious import __main__ Since your module is main.py, I think this should just be import main The __main__ module is actually a build in module and I imagine this is not what you wanted. (see http://docs.python.org/librar

[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-07 Thread satish
Help, please! anyone? Thanks On Apr 7, 7:04 am, satish wrote: > if main.py were not in the path, import would've failed. Import > statement worked fine. > > On Apr 6, 6:52 pm, 秦锋 wrote: > > > main.py is in PYTHONPATH? > > What's your command looks like? > > > On 4月7日, 上午6时28分, satish wrote: >

[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-07 Thread satish
if main.py were not in the path, import would've failed. Import statement worked fine. On Apr 6, 6:52 pm, 秦锋 wrote: > main.py is in PYTHONPATH? > What's your command looks like? > > On 4月7日, 上午6时28分, satish wrote: > > > I am trying to use bulkuploader for the first time using the procedure > >

[google-appengine] Re: Bulkuploader error - No implementation for kind \'%s\'' % kind

2009-04-06 Thread 秦锋
main.py is in PYTHONPATH? What's your command looks like? On 4月7日, 上午6时28分, satish wrote: > I am trying to use bulkuploader for the first time using the procedure > outlined at this page (http://code.google.com/appengine/docs/python/ > tools/uploadingdata.html) but I am receiving the following e