You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
989 B
Python
29 lines
989 B
Python
import os, argparse, sys, re, json
|
|
from mwclient import (Site,
|
|
errors)
|
|
|
|
# API CALL
|
|
# https://hub.xpub.nl/sandbox/itchwiki/api.php?action=smwbrowse&browse=pvalue¶ms={ "limit": 1500, "offset": 0, "property" : "Title", "search": "" }&format=json
|
|
# generated orgs.json
|
|
|
|
# login
|
|
site = Site(host='hub.xpub.nl/sandbox', path='/itchwiki/')
|
|
|
|
wd =os.path.dirname(os.path.abspath(__file__)) # parent working directory
|
|
with open(os.path.join(wd, 'login.txt'), 'r') as login: # read login user & pwd
|
|
loginlines = login.read()
|
|
user, pwd = loginlines.split('\n')
|
|
site.login(username=user, password=pwd) # login to wiki
|
|
|
|
|
|
with open('titles.json', 'r') as f:
|
|
titles = json.load(f)
|
|
|
|
for pagename in titles['query']:
|
|
if pagename != 'A Primer on the Tribal Filipinos in Agusan and Surigao':
|
|
# print(pagename)
|
|
page = site.pages[pagename]
|
|
print(page)
|
|
# text = page.text()
|
|
page.save('{{Publication}}\n[[Category:Title]]')
|