方式有点隐蔽,在实例化 Goose 的时候,作为集成到第一个参数里面传入
示例如下:
from goose3 import Goose
from goose3.text import StopWordsChinese
from loguru import logger
import json
proxy = 'http://xxxxx:xxxxx@xxx.xxx.xxx.xx:xxxx'
http_proxies = {
'http': proxy,
'https': proxy
}
url = 'https://www.88mv.org/guochanju/202310/229277.html'
g = Goose(
config={
'stopwords_class': StopWordsChinese,
'enable_image_fetching': True,
'http_proxies': http_proxies
}
)
article = g.extract(url=url)
logger.debug(json.dumps(article.infos, indent=4, ensure_ascii=False))
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。