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
>> 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
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
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.
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
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