Re: Socket programming

2015-01-03 Thread pramod gowda
On Saturday, January 3, 2015 9:27:20 PM UTC+5:30, Steven D'Aprano wrote: > pramod gowda wrote: > > > HI, i m doing n personal laptop. > > so i think i ve rights to open a listening socket,could u pls tell me hw > > can i check it? > > Is your keyboard

Re: Socket programming

2015-01-03 Thread pramod gowda
On Saturday, January 3, 2015 8:39:26 PM UTC+5:30, mm0fmf wrote: > On 03/01/2015 11:43, pramod gowda wrote: > > server_socket=socket.socket() > > server_name='192.168.2.2' > > server_port= 80 > > server_socket.bind((server_name,server_port)) > > server_s

Re: Socket programming

2015-01-03 Thread pramod gowda
On Saturday, January 3, 2015 6:08:28 PM UTC+5:30, Chris Angelico wrote: > On Sat, Jan 3, 2015 at 11:25 PM, pramod gowda wrote: > > I am using python 3.4.2 > > I don get any exceptions, > > but wn i run the code,i don see any connections, IP address is given as my > >

Re: Socket programming

2015-01-03 Thread pramod gowda
On Saturday, January 3, 2015 5:26:27 PM UTC+5:30, Chris Angelico wrote: > On Sat, Jan 3, 2015 at 10:43 PM, pramod gowda wrote: > > I am not getting the output, i am using windows 7 OS.. > > please check and give me the solution. > > Windows 7 - that's part of the sto

Socket programming

2015-01-03 Thread pramod gowda
Hi i am learning socket programming, client code: import socket client_socket=socket.socket() server_address='192.168.2.2' server_port= 80 print("hello") client_socket.connect((server_address,server_port)) print("hello") data=client_socket.recv(1024) print(data) client_socket.close() server cod

Question regarding python migration

2010-10-13 Thread Pramod Thirthachar Sridhar
future. Please help Many thanks in advance - Pramod -- http://mail.python.org/mailman/listinfo/python-list

Question regarding python migration

2010-10-13 Thread Pramod Thirthachar Sridhar
future. Please help Many thanks in advance - Pramod -- http://mail.python.org/mailman/listinfo/python-list

Error in Following python program

2010-09-04 Thread Pramod
#/usr/bin/python from numpy import matrix n=input('Enter matrix range') fr=open('mat.txt','r') print ('Enter elements into the matrix\n') a=matrix([[input()for j in range(n)] for i in range(n)]) for i in range(n): for j in range(n): print a[i][j] print '\n' When i r

problem in using linalg solver in numpy

2010-08-14 Thread Pramod
Hi Friends When run the below program in python i got error like this , Matrix [[ 8 -6 2] [-4 11 -7] [ 4 -7 6]] row vecotr X [[ 28 -40 33]] Traceback (most recent call last): File "solve.py", line 16, in print A*B File "/usr/lib/python2.6/dist-packages/numpy/core/defmatrix.py", l

How to give matrix input from keyboard or file in python

2010-08-11 Thread Pramod
I want to write the following programm in python . Main objective is input from keyoard to enter elements into the matrix . Thanks in advance #include #include #include using namespace std; int main() { double **a; int i,j,n; cout<<"Enter size of the matrix\n";

How to input values of the matrix from keyboard in python

2010-08-11 Thread Pramod
Hi I want to know the how we input values into the matrix (N*N size) from keyboard in python, Here I wrote Matrix programe in C++ This asks values from key board and print on the console N*N matrix ; Thanks in advance #include using namespace std; int main() { double **a;

help: Question regarding parallel communication using python

2008-04-30 Thread pramod sridhar
kind of Parallel processing to achieve this ? - If so, Which of the available packages (like pypar or Pydusa..etc) suits best ? Please suggest. Thank you very much in advance, With Regards, Pramod -- http://mail.python.org/mailman/listinfo/python-list

Need Help

2008-04-09 Thread pramod sridhar
Thanks in advance, Pramod -- http://mail.python.org/mailman/listinfo/python-list

Query regarding support for IPv6 in python

2006-04-26 Thread Pramod TK
introduced. Is this new function getaddrinfo() of IPv6 is supported in Win32 Extensions for python. Thanks in Advance, Pramod TK -- http://mail.python.org/mailman/listinfo/python-list

Query : sys.excepthook exception in Python

2006-04-26 Thread Pramod TK
oblem with python? Is there any known solution. I am using Python 2.4. Thanks in Advance With Best Regards, Pramod TK -- http://mail.python.org/mailman/listinfo/python-list

Query : sys.excepthook exception in Python

2006-04-10 Thread Pramod, TK
terminated, they continue to execute normally. Is this is a problem with python? Is there any known solution. I am using Python 2.4. Thanks in Advance With Best Regards, Pramod TK -- http://mail.python.org/mailman/listinfo/python-list

python 2.4 logging module

2006-03-10 Thread Pramod
Hi All, How can I remove an Instance of logger ? I need this feature in one of my script where I need to associate each time logger instance to different handler. Thanks in advance Pramod -- http://mail.python.org/mailman/listinfo/python-list

Re: Client side web programming

2006-01-12 Thread Pramod Subramanyan
Neil Hodgson wrote: > Pramod Subramanyan wrote: > > > Using cookielib and urllib2, I've come up with a workable solution. Its > > damn slow though - which is probably orkut's fault - deletes about > > 10-15 scraps a minute - so to get through 14000 scraps its

Re: Client side web programming

2006-01-10 Thread Pramod Subramanyan
lution. Its damn slow though - which is probably orkut's fault - deletes about 10-15 scraps a minute - so to get through 14000 scraps its probably gonna take around 23 hours. Anyway, thanks a lot everybody. Pramod -- http://mail.python.org/mailman/listinfo/python-list

Re: Client side web programming

2006-01-10 Thread Pramod Subramanyan
Fuzzyman wrote: > And this one for cookie handling: > > http://www.voidspace.org.uk/python/articles/cookielib.shtml > > All the best, > > Fuzzyman Cool! Thanks a lot. -- http://mail.python.org/mailman/listinfo/python-list

Re: Client side web programming

2006-01-10 Thread Pramod Subramanyan
Michele Simionato wrote: > > Pramod Subramanyan asked aboyt urllib2: > > Look at this article: > > http://www.voidspace.org.uk/python/articles/urllib2.shtml > >Michele Simionato Thanks! This is the sort of thing I need. -- http://mail.python.org/mailman/listinfo/python-list

Client side web programming

2006-01-10 Thread Pramod Subramanyan
rs to further information? Thanks, Pramod -- http://mail.python.org/mailman/listinfo/python-list