我可以在Ghost.py上加载HTML,
如果我使用BeautifulSoup获取HTML代码,如何在Ghost.py上加载它。
我尝试但没有成功,:
from ghost import Ghost()
from urllib.request import urlopen
from bs4 import BeautifulSoup
page = urlopen("http://en.wikipedia.org")
html = BeautifulSoup(page)
g = Ghost()
with g.start() as session:
page, resources = session.open(html)
感谢您的帮助。