Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

With a bit of guidance from choroba, I offer here this tool which worked great for me and got this report off my to-do list.

#!/usr/bin/env perl use strict; use warnings; use FindBin; use File::Util; use Data::Dumper; use HTML::TableExtract qw(tree); use Lingua::EN::NameParse::Simple; =head1 NAME mm_subscriber_2csv.pl =head1 VERSION Version 0.01 =head1 SYNOPSIS =over mm_subscriber_2csv.pl > mm_subscriber_list.csv =back This script assumes that it is located in a directory full of html files downloaded from a Mailman listserv's Member Management tool. These are the web forms which permit one to manage the list subscription of each subscriber to a list. This script will parse each html file and harvest the name and email address of each subscriber, printing them on STDOUT in csv format, ready to be redirected into a file for importation into a database. =cut print "'TITLE','FIRST','MIDDLE','LAST','SUFFIX','EMAIL'\n"; my($f) = File::Util->new(); my (@html_files) = $f->list_dir( "$FindBin::Bin",'--files-only','--pattern=\.html'); foreach my $html_file ( @html_files ){ my $html; open( 'HTML', '<', $html_file ) or die "Unable to open $html_file \n"; while(<HTML>){ $html .= $_; } close(HTML); parse_subscriber_list( $html ); } sub parse_subscriber_list { my $html = shift; my $te = HTML::TableExtract->new( headers => [ 'unsub', 'member', 'mod', 'hide', 'nomail', 'ack', 'not metoo', 'nodupes', 'digest', 'plain', 'language' ] ); my $row_count; $te->parse($html); foreach my $ts ($te->tables){ foreach my $row ($ts->rows){ $row_count++; my $name = $row->[1]->content->[2]->attr('value'); my %name = Lingua::EN::NameParse::Simple::ParseName($name) +; my $email = $row->[1]->content->[3]->attr('value'); $email =~ s/%40/\@/; my @record; foreach my $field (qw/ TITLE FIRST MIDDLE LAST SUFFIX / ){ $name{$field} ||= ''; push @record, $name{$field}; } push @record, $email; my $record = "'" . join( "','", @record ) . "'"; print $record . "\n"; } } } exit; =head1 ACKNOWLEDGEMENTS I publish this with appreciation to the authors of the modules which m +ade it possible, and to choroba from the Czech Republic, who shared a + clue with me by way of PerlMonks.org on how to more effectively use +HTML::TableExtract. Thanks again to the perl community who made cpan and perlmonks availab +le to us all. =head1 LISCENSE This script is made available subject to the conditions of the Gnu Pub +lic Liscense, v2. You are welcome to use, and modify this code so lo +ng as any redistribution is made subject to the same terms. =head1 COPYRIGHT 2012, Hugh Esco, YMD Partners LLC; dba/ http://CampaignFoundations.com +/ =cut
if( $lal && $lol ) { $life++; }
if( $insurance->rationing() ) { $people->die(); }

In reply to Re: Parsing html snippet, help appreciated. by hesco
in thread Parsing html snippet, help appreciated. by hesco

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-18 10:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found