title pages -- py/json
parent
48f304d903
commit
52d917c48c
@ -0,0 +1,28 @@
|
||||
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]]')
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue