creating RAW sockets

2011-03-16 Thread moijes12
to change any system settings or do I need to use a newer python version.Also,please suggest further reading. thanks moijes12 -- http://mail.python.org/mailman/listinfo/python-list

Re: creating RAW sockets

2011-03-16 Thread moijes12
On Mar 17, 11:14 am, Nobody wrote: > On Wed, 16 Mar 2011 22:36:07 -0700, moijes12 wrote: > > Traceback (most recent call last): > >   File "getsockopt_handler.py", line 7, in ? > >     send.bind((gethostbyname(gethostname()),5)) > > socket.error:

Re: creating RAW sockets

2011-03-16 Thread moijes12
On Mar 17, 11:28 am, moijes12 wrote: > On Mar 17, 11:14 am, Nobody wrote: > > > On Wed, 16 Mar 2011 22:36:07 -0700, moijes12 wrote: > > > Traceback (most recent call last): > > >   File "getsockopt_handler.py", line 7, in ? > > >

Re: creating RAW sockets

2011-03-17 Thread moijes12
On Mar 18, 6:20 am, Nobody wrote: > On Wed, 16 Mar 2011 23:50:03 -0700, moijes12 wrote: > > Now,please can someone guide(as in what should I read and NOT as in > > give me the code) me in decoding the IP header of packets using python > > 3.0.1. > > The "struct&q

Re: Books to lean Python 3 Web Programming?

2011-10-23 Thread moijes12
On Oct 23, 3:18 am, Jonathan Loescher wrote: > Can anyone recommend a good book to learn the web programming aspects > of Python 3? Hi Try out "Dive into Python 3" for an introduction to HTTP services. regards Moses -- http://mail.python.org/mailman/listinfo/python-list

Re: Books to lean Python 3 Web Programming?

2011-10-24 Thread moijes12
On Oct 23, 3:18 am, Jonathan Loescher wrote: > Can anyone recommend a good book to learn the web programming aspects > of Python 3? Hi You can check "Dive into Python 3" by Mark Pilgrim. It does cover some aspects of web programming. I haven't read it myself,but I've been reading "Dive into Pyth

Re: Getting involved

2012-01-10 Thread moijes12
On Jan 7, 4:13 pm, Chris Angelico wrote: > On Sat, Jan 7, 2012 at 9:59 PM, Sophie Sperner > wrote: > > Could you please list me 2 or 3 projects in Python and/or Java which > > are currently active (vivid) and useful? > > Easiest way to find a project to join would be to go to SourceForge, > Goog

unable to import modules from other folders

2008-06-10 Thread moijes12
Hi friends I have a module "bigbee" in folder C:\MyDocs\BigBee and another module "foo" needs to import from this.however, "foo" is in D:\foo. foo.py : from bigbee import * The error i get is: ImportError: No Module bigbee. Please provide a solution. -- http://mail.python.org/mailman/listinfo

importing .dll in a python file

2008-07-11 Thread moijes12
Hi I need to use a .dll from a python script.I have installed pywin.But in the program ,which is like: import dllName I get : Import Error : DLL not found Please suggest a solution! -- http://mail.python.org/mailman/listinfo/python-list

Re: importing .dll in a python file

2008-07-11 Thread moijes12
On Jul 11, 2:09 pm, Tim Golden <[EMAIL PROTECTED]> wrote: > moijes12 wrote: > > I need to use a .dll from a python script.I have installed pywin.But > > in the program ,which is like: > > > import dllName > > > I get : > > > Import Error : DLL not

importing from .pyd

2008-07-13 Thread moijes12
ut it didn't work.I have also given the path for foo.pyd in PYTHONPATH.but i still recieve the same error. Please suggest a solution moijes12 -- http://mail.python.org/mailman/listinfo/python-list

Re: importing from .pyd

2008-08-29 Thread moijes12
On Jul 14, 4:11 pm, Kay Schluehr <[EMAIL PROTECTED]> wrote: > On 14 Jul., 06:03, moijes12 <[EMAIL PROTECTED]> wrote: > > > hi > > > there is a .pyd file present in the same folder as the script abc.py > > by the name foo.pyd .I don't have foo.py

help in execfile function

2008-09-04 Thread moijes12
gram keeps calling execfile on a.py and thus an infinite loop is created.I am running this on Windows XP. Please suggest a sloution whereby i can use execfile to execute all files in fileList.Please tell me where in my program i may have gone wrong. moijes12 -- http://mail.python.org/mailman/listinfo/python-list

Re: need clarification on -0

2009-11-30 Thread moijes12
On Nov 28, 12:55 pm, Erik Max Francis wrote: > moijes12 wrote: > > I know the value -0 is quite meaningless and makes little sense.But I > > was just fiddling.I am unable to figure out the below result > > >>>> -0 and True > > 0 --> (Why is this

getting local area connection information through python in windows

2010-05-22 Thread moijes12
Hi I need to get the details of Local Area connection information(network interface) like packets sent,packets recieved,duration etc. I have to do this in Windows using python. I tried looking under the socket module and also googling,but did not find anything that I could use for windows,though

Re: getting local area connection information through python in windows

2010-05-22 Thread moijes12
On May 22, 1:12 pm, sturlamolden wrote: > On 22 Mai, 09:38, moijes12 wrote: > > > I need to get the details of Local Area connection information(network > > interface) like packets sent,packets recieved,duration etc. I have to > > do this in Windows using python. >