Last active
August 16, 2016 15:59
-
-
Save Aubreymcfato/445ae33d78ef58f3b49c to your computer and use it in GitHub Desktop.
Wikisource page counter for contest. It is used during the annual contest in Wikisource to track and cound editors proofreadings.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
The MIT License (MIT) | |
Copyright (c) 2013 Joan Creus <[email protected]> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
THE SOFTWARE. | |
""" | |
import re | |
from datetime import datetime, date | |
import pywikibot as wikipedia | |
#import query as query | |
import pywikibot.data.api | |
site = wikipedia.Site('it','wikisource') | |
punts = {} | |
vali = {} | |
revi = {} | |
llibres = [u'Bandello - Novelle, Laterza 1910, I.djvu', u'Fior di Sardegna (Racconti).djvu', u'Racconti sardi.djvu', u'Slataper - Il mio carso, 1912.djvu', u"D'Annunzio - Il libro delle vergini.djvu", u'Basile - Lu cunto de li cunti, Vol.I.djvu', u'Zibaldone di pensieri IV.djvu', u'Zibaldone di pensieri V.djvu', u'Zibaldone di pensieri VI.djvu', u'Zibaldone di pensieri VII.djvu', u'Operette morali.djvu', u'Rime (Andreini).djvu', u'Rime (Cavalcanti).djvu', u'Eneide (Caro).djvu', u'Commedia - Inferno (Buti).djvu', u'La Natura.djvu', u'Omero minore.djvu', u'Con gli occhi chiusi.djvu', u'Ultime lettere di Jacopo Ortis.djvu', u"Deledda - Il sigillo d'amore, 1926.djvu", u'Deledda - Le colpe altrui.djvu', u'Sino al confine.djvu', u'La capanna dello zio Tom, 1871.djvu', u'Serra - Scritti, Le Monnier, 1938, I.djvu', u'Rivista di Scienza - Vol. II.djvu', u'Vasco - Della moneta, 1788.djvu', u'Sopra lo amore.djvu', u"L'Anticristo.djvu", u'Il crepuscolo degli idoli.djvu', u'Bruno - Cena de le ceneri.djvu', u'Ecce Homo (1922).djvu', u'Saul.djvu', u'Verginia.djvu', u'Tebaldo e Isolina.djvu', u'Le nebule.djvu', u'Mirtilla.djvu', u'Le congreganti.djvu', u'Marinetti - La cucina futurista, 1932.djvu', u'Interiano - La vita et sito de Zychi, Aldo, 1502.djvu', u'Nicolò Toneatti - Guida del viaggiatore per la città e per li dintorni di Trento, 1837.djvu', u'Rosselli - Epulario, 1643.djvu', u'Fineo - Il rimedio infallibile.djvu', u'Trattato della neve e del bere fresco.djvu'] | |
begin = 1 | |
""" | |
Put your local last page of books in the right order. ex: Foggerty.djvu is 376" | |
""" | |
end = [426, 196, 168, 124, 184, 511, 451, 444, 462, 496, 436, 328, 228, 668, 909, 410, 222, 260, 394, 318, 348, 340, 456, 504, 49, 432, 456, 273, 208, 170, 78, 174, 157, 143, 92, 120, 48, 63, 130, 48, 284, 28, 88, 100, 90] # mancano dai romanzi in poi | |
if len(llibres) == len(end): | |
print "OK, they're the same" | |
i = 0 | |
for llibre in llibres: | |
print llibre | |
for pag in range(begin, end[i]+1): | |
print pag | |
params = { | |
'action' :'query', | |
'prop' :'revisions', | |
'titles' :u'Page:%s/%d' % (llibre, pag), | |
'rvlimit' :'50', | |
'rvprop' :'user|timestamp|content', | |
} | |
data = pywikibot.data.api.CachedRequest(5, **params).submit() #data = pywikibot.data.api.CachedRequest(0, site=site, **params).submit() | |
try: | |
revs = data["query"]["pages"].values()[0]["revisions"][::-1] | |
except KeyError: | |
continue | |
old = None | |
oldUser = None | |
oldData = None | |
for rev in revs: | |
data = datetime.strptime(rev["timestamp"], '%Y-%m-%dT%H:%M:%SZ') | |
user = rev["user"] | |
txt = rev["*"] | |
a,b = re.findall('<pagequality level="(\d)" user="(.*?)" />', txt)[0] | |
a = int(a) | |
b = user | |
if a == 3 and old < 3 and data >= datetime(2015, 11, 23, 0, 0, 0) and data < datetime(2015, 12, 8, 0, 0, 0): | |
print u"%s proofreads the page %d." % (b, pag) | |
if old == None: print u"Page doesn't exist before." | |
punts[b] = punts.get(b, 0)+2 | |
revi[b] = revi.get(b, 0)+1 | |
if a == 3 and old == 4 and data >= datetime(2015, 11, 23, 0, 0, 0) and data < datetime(2015, 12, 8, 0, 0, 0): | |
if (oldData >= datetime(2015, 11, 23, 0, 0, 0) and oldData < datetime(2015, 11, 24, 0, 0, 0)): | |
punts[oldUser] = punts.get(oldUser, 0)-1 | |
vali[oldUser] = vali.get(oldUser, 0)-1 | |
if a == 4 and old == 3 and data >= datetime(2015, 11, 23, 0, 0, 0) and data < datetime(2015, 12, 8, 0, 0, 0): | |
print u"%s validates page %d." % (b, pag) | |
punts[b] = punts.get(b, 0)+1 | |
vali[b] = vali.get(b, 0)+1 | |
if a < 3 and old == 3 and data >= datetime(2015, 11, 23, 0, 0, 0) and data < datetime(2015, 12, 8, 0, 0, 0): | |
if (oldData >= datetime(2015, 11, 23, 0, 0, 0) and oldData < datetime(2015, 12, 8, 0, 0, 0)): | |
punts[oldUser] = punts.get(oldUser, 0)-2 | |
revi[oldUser] = vali.get(oldUser, 0)-1 | |
old = a | |
oldUser = b | |
oldData = data | |
print "-------" | |
i=i+1 | |
print "punt",sorted(punts.iteritems(), key=lambda x: x[1], reverse=True) | |
print "vali",sorted(vali.iteritems(), key=lambda x: x[1], reverse=True) | |
print "revi",sorted(revi.iteritems(), key=lambda x: x[1], reverse=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment