Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grantm/xml-sax
Simple API for XML including pure Perl parser
https://github.com/grantm/xml-sax
perl xml-parsing
Last synced: about 2 months ago
JSON representation
Simple API for XML including pure Perl parser
- Host: GitHub
- URL: https://github.com/grantm/xml-sax
- Owner: grantm
- License: other
- Created: 2009-10-09T08:03:25.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T13:47:33.000Z (over 5 years ago)
- Last Synced: 2024-06-18T12:29:50.031Z (7 months ago)
- Topics: perl, xml-parsing
- Language: Perl
- Homepage: http://search.cpan.org/dist/XML-SAX/
- Size: 292 KB
- Stars: 10
- Watchers: 5
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
XML::SAX
========XML::SAX consists of several framework classes for using and building
Perl SAX2 XML parsers, filters, and drivers. It is designed around the
need to be able to "plug in" different SAX parsers to an application
without requiring programmer intervention. Those of you familiar with
the DBI will be right at home. Some of the designs come from the Java
JAXP specification (SAX part), only without the javaness.INSTALLATION
============All of this is 100% perl, so installation should be a breeze:
On Unix and Unix-like platforms:
$ perl Makefile.PL
$ make
$ make test
$ make installOn ActivePerl, or Perl's built with MSVC:
$ perl Makefile.PL
$ nmake
$ nmake test
$ nmake installUSAGE
=====For usage, please read the included documentation after installation:
$ perldoc XML::SAX
$ perldoc XML::SAX::ParserFactoryAnd other documents leading off those pages.
LICENSE/COPYRIGHT
=================Please see the LICENSE file for licensing issues.
The files in this distribution are copyrighted their respective authors
as detailed in the POD documentation of each module.