Re: what gui designer is everyone using

2012-06-05 Thread becky_lewis
I'm afraid that in my experience, doing things by hand has always ended up being quicker and simpler than relying on a GUI designer when it comes to building python GUI apps. That said, I've not tried any for the past few years so there may be a killer app out there that I've not tried :) But even

Re: which one do you prefer? python with C# or java?

2012-06-09 Thread becky_lewis
Lisp and Clojure are functional languages. Learning one of those (or a similar language) will help by providing you with a fairly different perspective on how to approach programming problems. Personally I think learning Lisp or Clojure is good advice. However, if you're really adamant about going

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread becky_lewis
25 pm, Harald Hanche-Olsen wrote: > [becky_lewis ] > > > Lisp and Clojure are functional languages. > > No, they're not. > > But you can (and often will) do quite a bit of functional programming in > Lisp, as it lends itself quite naturally to that way of thinking. &

Re: ipython installed in virtualenv seems not to use virtualenv

2011-08-11 Thread becky_lewis
Hi, are you doing a pip install from within your virtualenv (sourcing the virtualenv and THEN installing ipython)? Becky Lewis On Aug 11, 9:59 am, Gelonida N wrote: > Hi, > > Short version > == > I have a system with ipython installed by my Ubuntu distribution > I created a virtual

Re: ipython installed in virtualenv seems not to use virtualenv

2011-08-11 Thread becky_lewis
Just to add ... I ran through creating a virtualenv in the same manner as you: $ virtualenv SomeEnv $ source SomeEnv/bin/activate (SomeEnv)$ which pip /home/user/virtual/SomeEnv/bin/pip (SomeEnv)$ pip install ipython Requirement already satisfied (use --upgrade to upgrade): ipython in / usr/local

Re: Learning Python

2011-08-24 Thread becky_lewis
http://diveintopython.org/ is where you can get an online version of the dive into python book. I found it useful when learning python :) Becky Lewis On Aug 24, 3:46 am, User wrote: > Hello all, > Does anyone have any good resources for learning Python? I know basic > Java and basic Python (loop

Re: Installing WebDAV server

2011-09-02 Thread becky_lewis
On Sep 2, 1:19 pm, "Fokke Nauta" wrote: > "Dennis Lee Bieber" wrote in > messagenews:mailman.687.1314941410.27778.python-l...@python.org... > > > > > > > > > > > On Thu, 1 Sep 2011 12:30:43 +0200, "Fokke Nauta" > > declaimed the following in > > gmane.comp.python.general: > > >> "Dennis Lee Bie

Re: Installing WebDAV server

2011-09-05 Thread becky_lewis
> > > Possibly. > > I tried this: > > server.py -n -c config.ini > > Once again, the server is up and running and when I am logging in with my > > browser (10.0.0.140:8081) I can see information showing up at the command > > prompt, showing somebody is logging is, but the same error: > > "fshandler

Re: Installing WebDAV server

2011-09-06 Thread becky_lewis
On Sep 5, 3:51 pm, "Fokke Nauta" wrote: > > Hi Becky, > > I tried it straight away: > directory=D:\Webdav\ > directory=D:/Webdav/ > > Didn't work, in both cases the same error "fshandler:get_data: \Webdav not > found". > > I have the opinion that my WebDAV installation is at fault. The database is

Re: Running Python Demo on the Web?

2011-09-06 Thread becky_lewis
On Sep 5, 11:00 pm, Python Fiddle Admin wrote: > Python has been ported to the web browser at pythonfiddle.com. Python > Fiddle can import snippets of code that you are reading on a web page > and run them in the browser. It supports a few popular libraries. > > Another common usage is to post cod

Re: Installing WebDAV server

2011-09-07 Thread becky_lewis
> I have re-installed Python and the setuptool, and tried the Python version > of Active, but it did not make a difference. > So now I use the "old" Python 2.7 again. Used easy_install to install > PyWebDAV. I now run davserver.exe from the Script directory. Still the same > problem. > What I found

Re: Multiplication error in python

2011-09-27 Thread becky_lewis
I tried running your code in ipython: In [1]: l = [1,2,3,4,5] In [2]: i = 0 In [3]: for a in l: ...: p = 2 * a ...: t = p + i ...: i = t ...: In [4]: In [4]: t Out[4]: 30 The output from Python was 30, not 45. What Python version are you running? On Sep 27, 6:21 pm, sakth

Re: Multiplication error in python

2011-09-27 Thread becky_lewis
I think you may be doing something wrong. If I run: >>> l = [1, 2, 3, 4, 5] >>> i = 0 >>> for a in l: ...i += 2 * a ... >>> i 30 The result is 30 as expected. Nowhere near the 155 that you are getting. :/ Again, could you state which version of python are you using (and what OS) so

Re: Installing Python 2.6.7 on Windows

2011-09-27 Thread becky_lewis
On Sep 27, 9:54 pm, Wanderer wrote: > How do I install Python 2.6.7 on Windows? The Python 2.6.6 page says > > "Python 2.6.6 has been replaced by a newer security-fix only source > release of Python. Please download Python 2.6.7 instead." > > But there is no windows installer on the 2.6.7 page. Do

Re: (don't bash me too hard) Python interpreter in JavaScript

2011-11-22 Thread becky_lewis
On Nov 15, 8:37 pm, Passiday wrote: > Hello, > > I am looking for a way how to bring Python interpreter to JavaScript, in > order to provide a web-based application with python scripting capabilities. > The app would have basic IDE for writing and debugging the python code, but > the interpreta

Re: Can't install pycrypto

2011-12-05 Thread becky_lewis
My best guess from the error and a quick look at the setup.py file is that during setup "chmod 0755 configure" is trying to run but failing. I'm guessing that you're on windows and don't actually have chmod, hence the error. The project on github looks active so you could go and ask for a windows

Re: IPython 0.12 is out!

2011-12-19 Thread becky_lewis
Thanks and congratulations! Installed via pip --upgrade and everything seems to be working just fine (python 2.7.0+ on Linux) I look forward to investigating all of the new features! Becky Lewis On Dec 19, 9:49 am, Fernando Perez wrote: > Hi all, > > on behalf of the IPython development team,

Re: socket.gethostbyaddr( os.environ['REMOTE_ADDR'] error

2011-12-22 Thread becky_lewis
On Dec 22, 2:40 pm, Νικόλαος Κούρας wrote: > Hello when i try to visit my webpage i get the error it displays. Iam > not posting it since you can see it by visiting my webpage > athttp://superhost.gr > > Please if you can tell me what might be wrong. It doesn't seem entirely clear but if I had t

Re: socket.gethostbyaddr( os.environ['REMOTE_ADDR'] error

2011-12-23 Thread becky_lewis
Is there any possibility that you can tell us what the script actually is or provide a code listing (use pastebin if it's big)? -- http://mail.python.org/mailman/listinfo/python-list

Re: Python in web development

2013-03-03 Thread becky_lewis
1) Python is absolutely fine for web development. It's just as good, if not better than PHP or Perl for this sort of work (that's my opinion anyway). 2) I've used Django quite extensively and it can certainly handle your requirements. You might want to have a look at Flask (http://flask.pocoo.or