一、爬虫步骤
明确目标(确定在哪个网站搜索)
爬(爬下内容)
取(筛选想要的)
处理数据(按照你的想法去处理)
package main
import (
"fmt"
"io/ioutil"
"net/http"
2021-01-01