fix return

This commit is contained in:
Sarah 2022-02-18 21:48:47 +00:00
parent 88be36d5cd
commit 9322159d2a
1 changed files with 1 additions and 7 deletions

View File

@ -1,5 +1,4 @@
import requests
from bs4 import BeautifulSoup
def get_auth_header(token_id, token_secret):
@ -12,9 +11,4 @@ def get_page_export_html(page_id, wiki_url, token_id, token_secret):
r = requests.get(wiki_url + "/api/pages/{}/export/html".format(page_id), headers=headers)
soup = BeautifulSoup(r.text, 'html.parser')
elements = soup.find("code").text.strip().split("\n")
headers = elements.pop(0).split(",")
viewings = [dict(zip(headers, row.split(","))) for row in elements]
return viewings
return r.text