This is the current revision of this page, as edited by Draicone (talk | contribs) at 23:05, 3 July 2007 (→A better solution to your question at User talk:Kate: Sorry, my monitor wasn't working =S). The present address (URL) is a permanent link to this version.
Revision as of 23:05, 3 July 2007 by Draicone (talk | contribs) (→A better solution to your question at User talk:Kate: Sorry, my monitor wasn't working =S)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)Hey please feel free to drop me a note :)
your question at user talk:kate
Hi - I happened to see your question on user:kate's talk page about getting edit counts for lots of anonymous users. If you have access to a Linux, Unix, or Mac machine, or can install a Unix emulator like cygwin on a Windows machine, you can run a shell script that could run commands that would fetch the data and put it in a single file. I think you could also do this fairly easily in Perl (if you know a Perl programmer to ask). Assuming the list of users is in a file called "anons", one per line, the following shell commands create another file called "counts" containing an HTML line with the total edit counts. From there, you could manipulate the counts file (using, say, a word processor) into a CSV format acceptable for entry to excel. The basic idea is that there are scriptable commands (wget or curl) that can be used to fetch web pages.
WGET="wget -q -O -" # on a linux box with wget # WGET="/usr/bin/curl" # on a mac OS X
cat anons | while read ANON; do $WGET "http://kohl.wikimedia.org/~kate/cgi-bin/count_edits.cgi?user=$ANON&dbname=enwiki" 2>&1 | grep "Total edits" done >counts
-- Rick Block (talk) 15:50, August 20, 2005 (UTC)
A better solution to your question at User talk:Kate
Hi there,
I too noticed your query for checking edit counts of 800 users, and I may have a betrer solution. I'm also a Misplaced Pages tool developer, and I recently created a highly efficient edit counter - see here. I can set it up so that you can insert multiple names (one per line, separated by commas or some similar format) and generate output that you can copy into Excel. Contact me via email if you wish to discuss this further.
Draicone 22:58, 3 July 2007 (UTC)
P.S. I know its been more than two years, but just in case you still need the data =)