📜  autoscrapper 基本代码 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:31.631000             🧑  作者: Mango

代码示例1
url = 'https://www.analyticsvidhya.com/blog/category/machine-learning/'
wanted_list = ['https://www.analyticsvidhya.com/blog/2021/04/confusion-matrix-detailed-intuition-and-trick-to-learn/']
scraper = AutoScraper()
result = scraper.build(url, wanted_list)
print(result)