Re: Python newbie here! No module named settings

2015-04-12 Thread rdavis7408
On Thursday, June 2, 2011 at 10:29:48 AM UTC-5, Neeraj Agarwal wrote: > Hello all, > > I'm a newbie to Python and its my 2nd day exploring it. > > I was trying to use Python wrapper for Google Charts API and was > tweaking the examples. > https://github.com/gak/pygooglechart/raw/master/examples/p

Re: Python newbie here! No module named settings

2012-09-07 Thread Jason Friedman
>> I was trying to use Python wrapper for Google Charts API and was >> tweaking the examples. >> https://github.com/gak/pygooglechart/raw/master/examples/pie.py >> >> This is the script which I was trying. >> >> And the python interpreter gives the following error: >> import settings >> ImportE

Re: Python newbie here! No module named settings

2012-09-07 Thread chandraganeshchowdary
On Thursday, June 2, 2011 8:59:48 PM UTC+5:30, Neeraj Agarwal wrote: > Hello all, > > I'm a newbie to Python and its my 2nd day exploring it. > > I was trying to use Python wrapper for Google Charts API and was > tweaking the examples. > https://github.com/gak/pygooglechart/raw/master/examples/pi

Re: Python newbie here! No module named settings

2011-06-02 Thread Neeraj Agarwal
On Jun 2, 8:48 pm, Martin Brochhaus wrote: > I can only guess. > > 1) You can delete "import helper" as that is never used in the code and would > raise another "no module" exception. > > 2) You can delete "import settings" and just insert some integers further > down where it is used (settings.

Aw: Python newbie here! No module named settings

2011-06-02 Thread Martin Brochhaus
I can only guess. 1) You can delete "import helper" as that is never used in the code and would raise another "no module" exception. 2) You can delete "import settings" and just insert some integers further down where it is used (settings.width and settings.height) OR - you can make the fol

Python newbie here! No module named settings

2011-06-02 Thread Neeraj Agarwal
Hello all, I'm a newbie to Python and its my 2nd day exploring it. I was trying to use Python wrapper for Google Charts API and was tweaking the examples. https://github.com/gak/pygooglechart/raw/master/examples/pie.py This is the script which I was trying. And the python interpreter gives the