Revision as of 15:56, 20 August 2005 editRick Block (talk | contribs)Administrators31,124 edits →your question at []: fix formatting← Previous edit | Revision as of 22:58, 3 July 2007 edit undoDraicone (talk | contribs)2,734 edits A better solution to your question at Uer talk:KateNext edit → | ||
Line 13: | Line 13: | ||
-- ] <small>(])</small> 15:50, August 20, 2005 (UTC) | -- ] <small>(])</small> 15:50, August 20, 2005 (UTC) | ||
== A better solution to your question at Uer talk:Kate == | |||
Hi there, | |||
I too noticed your query for checking edit counts of 800 users, and I may have a beter solution. I'm also a wikipedia tool developer, and I recently created a highly efficient edit counter - see . I can set it up so that you can insert multiple names (one per line, seperated by commas or some similar format) and generate output that you can copy into Excel. ] if you wish to discuss this further. | |||
] ] 22:58, 3 July 2007 (UTC) |
Revision as of 22:58, 3 July 2007
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 Uer talk:Kate
Hi there,
I too noticed your query for checking edit counts of 800 users, and I may have a beter solution. I'm also a wikipedia 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, seperated 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.