Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 254 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 254 Bytes

安装依赖

pip install requests
pip install beautifulsoup4
from GoogleSpider import GoogleSpider

if __name__ == "__main__":
    gs = GoogleSpider()
    keyword = "china"
    data = gs.search(keyword=keyword)
    print(data)