Jump to content

User:EsquivalienceBot/Source

From Wikipedia, the free encyclopedia
'''
    Any edits to this document made after 5 March 2016 (herein called "this program") is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
'''
import pywikibot
from datetime import datetime, timedelta
import time
import schedule

def generateDebates(site):
	return [pywikibot.page.Page(site, "Articles for deletion/Log/" + (datetime.utcnow() - timedelta(days=d)).strftime("%Y %B %-d"), ns=4) for d in xrange(0, 8)]

def purge(pages):
	for p in pages:
		if (p.exists()):
			if (p.purge()):
				print "Page " + p.title() + " purged successfully."
			else:
				print "Page " + p.title() + " failed to purge."

site = pywikibot.Site()

schedule.every(10).minutes.do(lambda: purge([generateDebates(site)[0]]))
schedule.every(15).minutes.do(lambda: purge(generateDebates(site)[1:]))

while True:
    schedule.run_pending()
    time.sleep(1)