# extractor **Repository Path**: seele2/extractor ## Basic Information - **Project Name**: extractor - **Description**: demo extractor - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2021-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 爬虫事例 core 为核心代码。参考go最流行的爬虫项目 zuidzy 为事例demo db 为数据库服务 ```shell script # 运行 go run main.go # 编译打包 go build # 交叉编译到windows 和 linux CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ```