Usuari:CastorBot/touchTemplate
Aparença
# -*- coding: utf-8 -*-
'''
Created on 14/08/2014
@summary: Programa que realitza un touch a tots els articles que tenen inclosa una plantilla
@author: Castor
'''
import pywikibot
def main():
template = 'Plantilla:Coord'
site = pywikibot.getSite()
if len(template)>0:
page = pywikibot.Page(site,u''+template)
articles = page.embeddedin(namespaces = 0, content=True)
for article in articles:
article.save("Pywikibot null edit")
pass
if __name__ == '__main__':
main()
pass