Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

More tasty XML goodness

by vroom (His Eminence)
on Sep 16, 2000 at 00:13 UTC ( [id://32737]=monkdiscuss: print w/replies, xml ) Need Help??

Now you can grab User nodes info xml generator to find out all the reputation, node_id, title, and createtime information for all of your nodes.

vroom | Tim Vroom | vroom@cs.hope.edu

Replies are listed 'Best First'.
RE: More tasty XML goodness
by mirod (Canon) on Sep 16, 2000 at 00:41 UTC

    And of course you can also use XML::Twig to get the same result:

    #!/bin/perl -w use strict; use XML::Twig; my $posts= 0; my $rep=0; my $twig= new XML::Twig( TwigRoots => { NODE => sub { my( $t, $node)= @_; $posts++; $rep +=$_[1]->att( 'reputation'); $t->purge; } }); $twig->parsefile( $ARGV[0]); print "$posts posts, $rep rep, ", sprintf( "%5.2f", $rep/$posts), " a +verage\n";
RE: More tasty XML goodness
by mirod (Canon) on Sep 16, 2000 at 00:24 UTC

    If you have XML::PYX installed you can then run this:

    pyx pm.xml | perl -n -e 'if( /^Areputation (\d+)/) { $rep+=$1;$posts++ +;} \ END { print "$posts posts, $rep rep, ", sprintf( "%5.2f", $rep/$posts) +, " average\n";}'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: monkdiscuss [id://32737]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2025-12-14 02:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your view on AI coding assistants?





    Results (93 votes). Check out past polls.

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.