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/pie.py

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/pie.py

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 ImportError: No module

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

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 folder

Re: Python newbie here! No module named settings

2011-06-02 Thread Neeraj Agarwal
On Jun 2, 8:48 pm, Martin Brochhaus martin.brochh...@googlemail.com 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

Re: Newbie Here

2005-06-02 Thread Dave Cook
On 2005-05-31, Mark Sargent [EMAIL PROTECTED] wrote: for the same things, what do you primarily use it for. Could you show me Web apps using nevow/twisted for work, and pygtk apps for fun. You might browse around sourceforge a bit:

Re: Newbie Here

2005-06-01 Thread Kent Johnson
Mark Sargent wrote: Hi All, I'm taking the plunge into Python. I'm currently following this tutorial, http://docs.python.org/tut/ I am not a programmer in general, although I've learnt a bit of bash scripting and some php/asp. I want to get into python to use it for Linux/Unix related

Newbie Here

2005-05-31 Thread Mark Sargent
Hi All, I'm taking the plunge into Python. I'm currently following this tutorial, http://docs.python.org/tut/ I am not a programmer in general, although I've learnt a bit of bash scripting and some php/asp. I want to get into python to use it for Linux/Unix related stuff. A question I have, is,

Re: Newbie Here

2005-05-31 Thread Peter Maas
Mark Sargent schrieb: I want to get into python to use it for Linux/Unix related stuff. A question I have, is, those of you who use it for the same things, what do you primarily use it for. Could you show me some examples.? - little daily stuff e.g. transforming data - sysadmin tasks

Re: Newbie Here

2005-05-31 Thread raviteja . bhupatiraju
Not sure what you mean Unix related stuff. Anything can be. I use Python as a general purpose language. Python is good for most things I do. Recently I used it for Web Applications (CherryPy), Search Engines (Lupy, PyLucene), Middleware (Ice), Swing GUIs (Jython), data transformations etc. --

Re: Newbie Here

2005-05-31 Thread Rob Cowie
As a relalative newbie myself I think I can say Python is used for anything any major programming language is used for. One of its many strengths is scalability - it can be used to great effect as a scripting language AND as an object oriented language for creating large, GUI apps. Yours is not

Re: Newbie Here

2005-05-31 Thread Peter Maas
Rob Cowie schrieb: As a relative newbie myself I think I can say Python is used for anything any major programming language is used for. My list was meant as an enumeration of tasks for which _I_ _currently_ use Python. You are of course right that Python covers a much wider range, although

Re: Newbie Here

2005-05-31 Thread Magnus Lycka
Mark Sargent wrote: A question I have, is, those of you who use it for the same things, what do you primarily use it for. Erh, I'm sure different people use it for very different things. In contrast to e.g. PHP or bash, Python is a very generic language usable for most preogramming tasks. My

Re: Newbie Here

2005-05-31 Thread newcoder
The impression for me for python is that it can be scalable and you can really build a full fledge application from it. In the past I used to evangelized on certain language and think that the world is full of philips screws that I can use my philips screwdriver to screw at. I was totally wrong.