Re: [BangPypers] Python 3.2 and Django

2011-09-29 Thread Kenneth Gonsalves
On Wed, 2011-09-28 at 21:53 -0700, Hussain Bohra wrote: Let me identify if any other MVC framework I can use along with python 3.2. django is not an MKC framework anyway. -- regards Kenneth Gonsalves ___ BangPypers mailing list BangPypers@python.org

[BangPypers] Howto run python selenium script on remote server

2011-09-29 Thread Saju M
Hi, I created a script using selenium and its working in my local system. But when i trying to run it in remote machine (Centos), getting error. This script should need to open a firefox browser. So i think the the script could not open the firefox browser on remote machine(Server). Have any way

Re: [BangPypers] Howto run python selenium script on remote server

2011-09-29 Thread Balachandran Sivakumar
Hi, On Thu, Sep 29, 2011 at 2:26 PM, Saju M sajup...@gmail.com wrote: Hi, I created a script using selenium and its working in my local system. But when i trying to run it in remote machine (Centos), getting error. This script should need to open a firefox browser. So i think the the script

Re: [BangPypers] Python 3.2 and Django

2011-09-29 Thread Noufal Ibrahim
Hussain Bohra hussainbohra...@yahoo.com writes: Thanks Mr. Gora and Mr. Sreekanth ... Let me identify if any other MVC framework I can use along with python 3.2. [...] Is there some real need to use Python 3.2? Most frameworks and libraries support only the 2.x series. -- ~noufal

Re: [BangPypers] Howto run python selenium script on remote server

2011-09-29 Thread Syed Mushtaq
Does you server have X running ? If yes you might want to set the DISPLAY env variable . If no then you must either run X or install something like Xvfb[1] to make firefox run [1] http://en.wikipedia.org/wiki/Xvfb Thanks -Syed On Thu, Sep 29, 2011 at 2:26 PM, Saju M sajup...@gmail.com wrote:

Re: [BangPypers] BangPypers Digest, Vol 49, Issue 32

2011-09-29 Thread Saju M
On Thu, Sep 29, 2011 at 3:30 PM, bangpypers-requ...@python.org wrote: Send BangPypers mailing list submissions to        bangpypers@python.org To subscribe or unsubscribe via the World Wide Web, visit        http://mail.python.org/mailman/listinfo/bangpypers or, via email, send a message

Re: [BangPypers] Howto run python selenium script on remote server

2011-09-29 Thread Saju M
Hi, I tried to open one GUI app in server, but not working [root@c5 ~]# export DISPLAY=:1.0 [root@c5 ~]# xclock Error: Can't open display: :1.0 [root@c5 ~]# export DISPLAY=:0.0 [root@c5 ~]# xclock Error: Can't open display: :0.0 [root@c5 ~]# ps -ef | grep X root 3900 3897 0 11:18 tty7

Re: [BangPypers] Howto run python selenium script on remote server

2011-09-29 Thread Balachandran Sivakumar
Hi, On Thu, Sep 29, 2011 at 8:53 PM, Saju M sajup...@gmail.com wrote: Hi, I tried to open one GUI app in server, but not working [root@c5 ~]# export DISPLAY=:1.0 [root@c5 ~]# xclock Error: Can't open display: :1.0 IIRC, on most GNU/Linux machines, ssh -X user@host would allow