r48 vs r49
......
147147
import requests
148148
149149
target = "Python"
150
url = f"https://namu.wiki/api/backlink/{target}"
150
url = f"https://wiki-api.namu.la/api/backlink/{target}"
151151
headers = {'Content-Type': 'application/json', 'Authorization': 'Bearer ............................'}
152152
153153
r = requests.get(url, headers = headers).json()
......