Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.470.424 Times

Xml Documents Parser freeware
Filter: All | Freeware | Demo
 

Xml Documents Parser

1 2 3 4 5 > 
Added: September 26, 2010 | Visits: 961

XML::RSS::Parser XML::RSS::Parser is a liberal object-oriented parser for RSS feeds. SYNOPSIS #!/usr/bin/perl -w use strict; use XML::RSS::Parser; use FileHandle; my $p = XML::RSS::Parser->new; my $fh = FileHandle->new(/path/to/some/rss/file); my $feed = $p->parse_file($fh); # output some values my...



Platforms: *nix

License: Freeware Size: 12.29 KB Download (93): XML::RSS::Parser Download

Added: June 05, 2010 | Visits: 1.117

XML::Checker::Parser XML::Checker::Parser is an XML::Parser that validates at parse time. SYNOPSIS use XML::Checker::Parser; my %expat_options = (KeepCDATA => 1, Handlers => [ Unparsed => &my_Unparsed_handler ]); my $parser = new XML::Checker::Parser (%expat_options); eval { local $XML::Checker::FAIL =...





Platforms: *nix

License: Freeware Size: 368.64 KB Download (110): XML::Checker::Parser Download

Added: April 20, 2010 | Visits: 1.046

XML::LibXML::Parser XML::LibXML::Parser is a Perl module to parse XML Data with XML::LibXML. SYNOPSIS $parser = XML::LibXML->new(); $doc = $parser->parse_file( $xmlfilename ); $doc = $parser->parse_fh( $io_fh ); $doc = $parser->parse_string( $xmlstring); $doc = $parser->parse_html_file( $htmlfile, %opts );...


Platforms: *nix

License: Freeware Size: 256 KB Download (106): XML::LibXML::Parser Download

Added: May 10, 2013 | Visits: 367

XML_HTMLSax XML_HTMLSax is a SAX based XML parser for badly formed XML documents, such as HTML. PEAR::XML_HTMLSax provides an API very similar to the native PHP XML extension, allowing handlers using one to be easily adapted to the other. The key difference is HTMLSax will not break on badly formed XML,...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (48): XML_HTMLSax Download

Released: September 21, 2012  |  Added: September 21, 2012 | Visits: 419

Matra - an XML DTD Parser Matra is a java based XML DTD Parser Utility. It allows you to parse a dtd, generate a dtdtree for the dtd and merge the dtd and its included modules into a single dtd. http://matra.sourceforge.net


Platforms: Windows, Mac, Linux

License: Freeware Size: 261.08 KB Download (49): Matra - an XML DTD Parser Download

Added: May 10, 2013 | Visits: 363

ezXML ezXML is a C library for parsing XML documents inspired by simpleXML for PHP. As the name implies, it's easy to use. It's ideal for parsing XML configuration files or REST web service responses. It's also fast and lightweight (less than 20k compiled).


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (65): ezXML Download

Added: May 10, 2013 | Visits: 529

Sax Filters This is a set of classes implementing SAX filters, the classes include a SAX class to parse XML documents using Expat and defines a way to create SAX filters to perform SAX- based queries, updates and transformations of documents. Simple filters can be chained to construct augmented complex XML...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (57): Sax Filters Download

Added: May 10, 2013 | Visits: 591

ActiveLink PHP XML Package ActiveLink PHP XML Package provides an easy interface to parse, read, modify, and output XML and XML documents. ActiveLink PHP XML Package is purely implemented in PHP and does not require any PHP XML extensions (including xml or domXML). Provided classes are: XML, XMLDocument, XMLBranch,...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (48): ActiveLink PHP XML Package Download

Added: August 23, 2010 | Visits: 1.036

PXR::Parser PXR::Parser is a Pure Perl SAX XML Push Parser. SYNOPSIS use PXR::Parser; my $parser = PXR::Parser->new( Handlers => { startDocument => &start_doc, endDocument => &end_doc, startElement => &start_element, endElement => &end_element, characters => &characters, } );...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (111): PXR::Parser Download

Added: May 13, 2010 | Visits: 1.146

XML::DOM::Lite XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. SYNOPSIS # Parser use XML::DOM::Lite qw(Parser :constants); $parser = Parser->new( %options ); $doc = Parser->parse($xmlstr); $doc = Parser->parseFile(/path/to/file.xml); # strip whitespace (can be about 30% faster) $doc =...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: May 10, 2013 | Visits: 363

Breaking large XML documents into chunks One of the few problems with using Python to process XML is the speed -- if the XML becomes somewhat large (>1Mb), it slows down exponentially as the size of the XML increases. One way to increase the processing speed is to break the XML down via tag name. This is especially handy if you are only...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (51): Breaking large XML documents into chunks Download

Added: May 10, 2013 | Visits: 367

Multiple handlers for xml.sax parser SAX is commonly used on large XML files because they don't fit nicely into core memory necessary for the friendlier DOM API. When dealing with -really- large XML files, multiple passes over the file becomes costly. The SAX handler in this script allows you to handle an XML file multiple ways in...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (49): Multiple handlers for xml.sax parser Download

Added: October 18, 2010 | Visits: 782

HaXml HaXml is a collection of utilities for parsing, transforming, filtering and generating XML documents using Haskell. Its basic facilities include: - a parser for XML, - a separate error-correcting parser for HTML, - an XML validator, - pretty-printers for XML and HTML. For processing XML...


Platforms: *nix

License: Freeware Size: 430.08 KB Download (93): HaXml Download

Added: January 18, 2010 | Visits: 1.615

ezXML ezXML is a C library for parsing XML documents inspired by simpleXML for PHP. As the name implies, its easy to use. Its also fast and lightweight (less than 20k compiled). Example Usage Given the following example XML document: < ?xml version="1.0"?> < formula1> < team name="McLaren"> <...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (148): ezXML Download

Added: February 19, 2010 | Visits: 844

Alvis::Pipeline Alvis::Pipeline is a Perl extension for passing XML documents along the Alvis pipeline. SYNOPSIS use Alvis::Pipeline; $in = new Alvis::Pipeline::Read(host => "harvester.alvis.info", port => 16716, spooldir => "/home/alvis/spool"); $out = new Alvis::Pipeline::Write(port => 29168); while...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (98): Alvis::Pipeline Download

Added: March 08, 2010 | Visits: 758

XMLParser for PHP XMLParser is a library that assists in parsing XML documents into generic PHP arrays. It also comes with RSSParser, an extension of XMLParser that creates simple RSS-specific array structures from RSS feeds..


Platforms: *nix

License: Freeware Size: 11.26 KB Download (100): XMLParser for PHP Download

Added: May 10, 2013 | Visits: 366

PheXist PheXist is a set of classes (PHP5, PHP4 & Perl) to query and manipulate XML documents in eXist XML:DB. eXist is an Open Source native XML database featuring efficient, index-based XQuery processing, automatic indexing, extensions for full-text search, XUpdate support and tight integration with...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (58): PheXist Download

Added: May 10, 2013 | Visits: 378

phpXIedit 0.7b phpXIedit is a web based application to edit, validate and preview XML documents. This program gives you a structured view of the XML data. It has support for multiple XML formats: SVG, DocBook, XHTML and more. phpXIedit is written in PHP.


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (63): phpXIedit 0.7b Download

Added: May 08, 2013 | Visits: 965

PHP XSLT This is a small PHP code snippet to style XML documents with XSLT stylesheetsThe script can even be called from PHP's command line.


Platforms: PHP

License: Freeware Size: 10 KB Download (46): PHP XSLT Download

Added: August 05, 2013 | Visits: 394

iterxml This is a Python tool for streaming data from large XML documents with minimal memory usageIt comes with methods for iterating over repeated elements of large XML documents without storing them in the server's memory.


Platforms: Python

License: Freeware Size: 10 KB Download (43): iterxml Download

1 2 3 4 5 >