Package netaddr :: Package ip :: Class IPv4Parser
[frames] | no frames]

Class IPv4Parser

source code

    object --+        
             |        
core.Publisher --+    
                 |    
  LineRecordParser --+
                     |
                    IPv4Parser

A LineRecordParser that understands how to parse and retrieve data records from the IANA IPv4 address space file.

It can be found online here :-

http://www.iana.org/assignments/ipv4-address-space

Instance Methods
 
__init__(self, fh, **kwargs)
Constructor.
source code
 
parse_line(self, line)
Callback method invoked for every line considered valid by the line parser's settings.
source code

Inherited from LineRecordParser: parse

Inherited from core.Publisher: attach, detach, notify

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties

Inherited from object: __class__

Method Details

__init__(self, fh, **kwargs)
(Constructor)

source code 

Constructor.

fh - a valid, open file handle to an OUI Registry data file.

kwargs - additional parser options.

Overrides: object.__init__

parse_line(self, line)

source code 

Callback method invoked for every line considered valid by the line parser's settings.

See base class method for more details.

Overrides: LineRecordParser.parse_line