Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/perigrin/xml-sax-writer
SAX2 XML Writer in Perl5
https://github.com/perigrin/xml-sax-writer
Last synced: 22 days ago
JSON representation
SAX2 XML Writer in Perl5
- Host: GitHub
- URL: https://github.com/perigrin/xml-sax-writer
- Owner: perigrin
- Created: 2012-07-03T21:45:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T19:04:42.000Z (over 7 years ago)
- Last Synced: 2024-06-18T17:14:15.297Z (7 months ago)
- Language: Perl
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
XML::SAX::Writer - SAX2 XML Writer
==================================About this module
-----------------This module has been developed by Robin Berjon .
Since version 0.50, it is maintained by means of the Perl XML
project [perl-xml.sourceforge.net]:- The sources are stored in the Github repository at
https://github.com/perigrin/xml-sax-writer- Requests and comments should be sent to the
[email protected] mailing list- Bugs should be reported to RT.cpan.org or the Github issue tracker.
Robin considered this module alpha but after years of testing on
humans we believe it can be considered beta now.The version 0.50 has been created by Petr Cimprich ,
using patches and sugestions from RT.cpan.org. Thanks go to all those
who reported bugs and suggested fixes.Usage
-----> use XML::SAX::Writer;
> use XML::SAX::SomeDriver;
>
> my $w = XML::SAX::Writer->new;
> my $d = XML::SAX::SomeDriver->new(Handler => $w);
>
> $d->parse('some options...');See [http://perl-xml.sourceforge.net/perl-sax/]() for more details about
Perl SAX 2.License
-------This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.