API を使用してこれを行うことはできないようです。そこで、Python と BeautifulSoup でパーサーをコーディングしました。実装は次のとおりです。
import urllib2
from bs4 import BeautifulSoup
template = "https://wikipedia.org"
def isValid(ref,paragraph):
if not ref or "#" in ref or "//" in ref or ":" in ref:
return False
if "/wiki/" not in ref:
return False
if ref not in paragraph:
return False
prefix = paragraph.split(ref,1)[0]
if prefix.count("(")!=prefix.count(")"):
return False
return True
def validateTag(tag):
name = tag.name
isParagraph = name == "p"
isList = name == "ul"
return isParagraph or isList
def getFirstLink(wikipage):
req = urllib2.Request(template+wikipage, headers={'User-Agent' : "Magic Browser"})
page = urllib2.urlopen(req)
data = page.read()
soup = BeautifulSoup(data)
soup = soup.find(id="mw-content-text")
for paragraph in soup.find_all(validateTag, recursive=False):
for link in paragraph.find_all("a"):
ref = link.get("href")
if isValid(str(ref),str(paragraph)):
return link
return False
このプロジェクトの詳細については、ソース コード全体を含む github ページをご覧ください: https://github.com/ChrisJamesC/wikipediaPhilosophy