Tag «data parse»: downloads
Search results for «data parse»:
Data::DPath::Builder 0.00_01 by Ken MacLeod
Data::DPath::Builder is a SAX handler for building an XPath tree.
SYNOPSIS
use AnySAXParser;
use Data::DPath::Builder;
$builder = Data::DPath::Builder->new();
$parser = AnySAXParser->new( Handler => $builder );
$root_node = $parser->parse( Source => [SOURCE] );
Data::DPath::Bui…
Parse::Binary::FixedFormat 0.10 by Autrijus Tang
Parse::Binary::FixedFormat is a Perl module to convert between fixed-length fields and hashes.
SYNOPSIS
use Parse::Binary::FixedFormat;
my $tarhdr =
new Parse::Binary::FixedFormat [ qw(name:a100 mode:a8 uid:a8 gid:a8 size:a12
mtime:a12 chksum:a…
Parse::RecDescent 1.94 by Damian Conway
Parse::RecDescent is a Perl module to generate Recursive-Descent Parsers.
SYNOPSIS
use Parse::RecDescent;
# Generate a parser from the specification in $grammar:
$parser = new Parse::RecDescent ($grammar);
# Generate a parser from the specification in $othergrammar
…
XML::DocStats 0.01 by Alan Dickey
XML::DocStats is a Perl module to produce a simple analysis of an XML document.
SYNOPSIS
Analyze the xml document on STDIN, the STDOUT output format is html:
use XML::DocStats;
my $parse = XML::DocStats->new;
$parse->analyze;
Analyze in-memory xml document:
use XML::DocS…
Construct 1.25 by Tomer Filiba
Construct is a python module for defining arbitrary data structures. Once a data structure (aka, "construct") is defined, it can be used to both parse raw data into an object and build an object into raw data.
Unlike most parsers, it works at the bit-level, so you don't need to worry about parsin…
eSTAR::RTML 0.6.1 by Alasdair Allan
eSTAR::RTML is a object interface to parse and create VOEvent messages.
SYNOPSIS
To parse a VOEvent file,
$object = new Astro::VO::VOEvent( File => $file_name );
or
$object = new Astro::VO::VOEvent( XML => $scalar );
Or to build a VOEVENT file,
$xml = $object->build( %h…
FLV::VideoTag 0.11 by Clotho Advanced Media, Inc.
FLV::VideoTag is a flash video file data structure Perl module.
METHODS
This is a subclass of FLV::Base.
$self->parse($fileinst)
Takes a FLV::File instance and extracts an FLV video tag from the file stream. This method throws exceptions if the stream is not a valid FLV v1.0 or v1.1 file…
HTML::Parser 3.54 by Gisle Aas
HTML::Parser is a HTML parser class. Objects of the HTML::Parser class will recognize markup and separate it from plain text (alias data content) in HTML documents. As different kinds of markup and text are recognized, the corresponding event handlers are invoked.
HTML::Parser is not a generic SGML…
Data::Stag::HashDB 0.10 by Chris Mungall
Data::Stag::HashDB is a perl used for building indexes over Stag files or objects.
SYNOPSIS
# parsing a file into a hash
my $hdb = Data::Stag::HashDB->new;
$hdb->unique_key("ss_details/social_security_no");
$hdb->record_type("person");
my $obj = {};
$hdb->index_hash($obj);
…
XML::Parser::PerlSAX 0.08 by Ken MacLeod
XML::Parser::PerlSAX is a Perl SAX parser using XML::Parser.
SYNOPSIS
use XML::Parser::PerlSAX;
$parser = XML::Parser::PerlSAX->new( [OPTIONS] );
$result = $parser->parse( [OPTIONS] );
$result = $parser->parse($string);
XML::Parser::PerlSAX is a PerlSAX parser using the XML::Pars…
Parse::Binary::FixedFormat::Variants 0.10 by Autrijus Tang
Parse::Binary::FixedFormat::Variants is a Perl module to convert between variant records and hashes.
Parse::Binary::FixedFormat supports variant record formats. To describe a variant structure, pass a hash reference containing the following elements to new. The object returned to handle variant r…
XML::Parser 2.34 by Larry Wall
XML::Parser is a perl module for parsing XML documents.
SYNOPSIS
use XML::Parser;
$p1 = new XML::Parser(Style => 'Debug');
$p1->parsefile('REC-xml-19980210.xml');
$p1->parse('Hello World');
# Alternative
$p2 = new XML::Parser(Handlers => {Start => &handle_start,
…
Data::CGIForm 0.4 by Tim Wilde
Data::CGIForm is a Perl module with form data interface.
Data::CGIForm is yet another way to parse and handle CGI form data. The main motivation behind this module was a simple specification based validator that could handle multiple values.
You probably don't want to use this module. CGI::Valid…
Search::QueryParser 0.91 by Laurent Dami
Search::QueryParser parses a query string into a data structure suitable for external search engines.
SYNOPSIS
my $qp = new Search::QueryParser;
my $s = '+mandatoryWord -excludedWord +field:word "exact phrase"';
my $query = $qp->parse($s) or die "Error in query : " . $qp->err;
$som…
ShaniXmlParser 1.4.7 by Quentin Anciaux
ShaniXmlParser is an XML/HTML DOM/SAX parser that can be validating. It can parse badly formed XML files.
ShaniXmlParser can parse files with inverted tags and bad escaped &,< and >. ShaniXmlParser expands all HTML entities. ShaniXmlParser is well suited to parse HTML files.
It is up to 3 time…
Convert::Binary::C 0.64 by Marcus Holland-Moritz
Convert::Binary::C is a Binary Data Conversion using C Types.
SYNOPSIS
Simple
use Convert::Binary::C;
#---------------------------------------------
# Create a new object and parse embedded code
#---------------------------------------------
my $c = Convert::Binary::C->new->…
Net::DNS::ZoneFile 1.04 by Luis E. Munoz
Net::DNS::ZoneFile is a Perl extension to convert a zone file to a collection of RRs.
SYNOPSIS
use Net::DNS::ZoneFile;
my $rrset = Net::DNS::ZoneFile->read($filename[, $root]);
print $_->string . "n" for @$rrset;
my $rrset = Net::DNS::ZoneFile->readfh($fh[, $root]);
# OR
…
Template::Plugin::XML::DOM 2.16 by Andy Wardley and Simon Matthews
Template::Plugin::XML::DOM is a plugin interface to XML::DOM.
SYNOPSIS
# load plugin
[% USE dom = XML.DOM %]
# also provide XML::Parser options
[% USE dom = XML.DOM(ProtocolEncoding = 'ISO-8859-1') %]
# parse an XML file
[% doc = dom.parse(filename) %]
[%…
MP3::M3U::Parser 2.20 by Burak G?rsoy
MP3::M3U::Parser is a MP3 playlist parser.
SYNOPSIS
use MP3::M3U::Parser;
my $parser = MP3::M3U::Parser->new(%options);
$parser->parse(*FILEHANDLE, $scalar, "/path/to/playlist.m3u");
my $result = $parser->result;
my %info = $parser->info;
$parser->export(-format…
GraphViz::Data::Structure 0.15 by Joe McMahon
GraphViz::Data::Structure can visualise data structures.
SYNOPSIS
use GraphViz::Data::Structure;
my $gvds = GraphViz:Data::Structure->new($data_structure);
print $gvds->graph()->as_png;
This module makes it easy to visualise data structures, even recursive or circular ones.
It is…
Related:
Featured Software
jEdit 4.3 pre8
jEdit is an Open Source text editor written in Java
Opera 9.02
Surf the Internet in a safer, faster, and easier way with Opera browser
GNU Aspell 0.60.4
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell
- Communications
- Database
- Desktop Environment
- Games
- Internet
- Multimedia
- Office
- Programming
- Science and Engineering
- System
- Text Editing&Processing
