├── .gitignore ├── Makefile ├── README.md ├── cmd └── db_cmd.go ├── configs ├── settings.go └── settings.yaml ├── domain ├── cbooo │ ├── cbo.md │ ├── cbooo.go │ ├── cbooo_test.go │ └── image │ │ └── 影库.png ├── chinafilm │ ├── chinafilm.go │ ├── chinafilm.md │ ├── chinafilm_test.go │ └── image │ │ ├── POSTMAN.png │ │ └── 影库.png ├── dongqiudi │ ├── dongqiudi.go │ ├── dongqiudi.md │ └── image │ │ ├── app_club.png │ │ ├── app_mark_ranking.png │ │ ├── app_nation.png │ │ ├── club.png │ │ ├── guojiadui.png │ │ ├── market_ranking.png │ │ ├── proxy_setting.png │ │ └── wifi.png ├── githubtrending │ ├── githubtrending.md │ ├── trending.csv │ ├── trending.go │ ├── trending.json │ ├── trending.md │ ├── trending.txt │ └── trending_test.go ├── gushiwen │ ├── common.go │ ├── gushiwen.md │ ├── gushiwen_query.go │ ├── image │ │ ├── 朝代和类型.png │ │ ├── 诗人.png │ │ └── 诗文.png │ └── query_dynasty_type.go ├── maoyan │ ├── image │ │ └── rank_2018.png │ ├── maoyan.go │ ├── maoyan.md │ └── maoyan_test.go ├── meizitu │ └── meizitu.go ├── nuomi │ ├── image │ │ └── ranking.png │ ├── nuomi.go │ ├── nuomi.md │ └── nuomi_test.go ├── pexels │ ├── pexels.go │ ├── pexels.md │ └── pexels_test.go └── piaofang │ ├── image │ └── 全球票房排行榜.png │ ├── piaofang.go │ ├── piaofang.md │ └── piaofang_test.go ├── images ├── 1.jpg └── 2.jpg ├── infra ├── downloader │ ├── downloader.go │ ├── downloader_gorequest.go │ ├── downloader_gorequest_test.go │ └── downloader_test.go ├── errors │ └── errors.go ├── initial │ └── db-initial.go └── url │ ├── common.go │ └── url.go ├── main.go ├── src └── model │ ├── cbo.go │ ├── gushiwen.go │ ├── pexels.go │ └── trending.go ├── ui └── src │ ├── cbooo │ ├── controller.go │ └── router.go │ ├── chinafilm │ ├── controller.go │ └── router.go │ ├── maoyan │ ├── controller.go │ └── router.go │ ├── nuomi │ ├── controller.go │ └── router.go │ └── piaofang │ ├── controller.go │ └── router.go └── vendor └── vendor.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/README.md -------------------------------------------------------------------------------- /cmd/db_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/cmd/db_cmd.go -------------------------------------------------------------------------------- /configs/settings.go: -------------------------------------------------------------------------------- 1 | package configs 2 | -------------------------------------------------------------------------------- /configs/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/configs/settings.yaml -------------------------------------------------------------------------------- /domain/cbooo/cbo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/cbooo/cbo.md -------------------------------------------------------------------------------- /domain/cbooo/cbooo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/cbooo/cbooo.go -------------------------------------------------------------------------------- /domain/cbooo/cbooo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/cbooo/cbooo_test.go -------------------------------------------------------------------------------- /domain/cbooo/image/影库.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/cbooo/image/影库.png -------------------------------------------------------------------------------- /domain/chinafilm/chinafilm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/chinafilm/chinafilm.go -------------------------------------------------------------------------------- /domain/chinafilm/chinafilm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/chinafilm/chinafilm.md -------------------------------------------------------------------------------- /domain/chinafilm/chinafilm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/chinafilm/chinafilm_test.go -------------------------------------------------------------------------------- /domain/chinafilm/image/POSTMAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/chinafilm/image/POSTMAN.png -------------------------------------------------------------------------------- /domain/chinafilm/image/影库.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/chinafilm/image/影库.png -------------------------------------------------------------------------------- /domain/dongqiudi/dongqiudi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/dongqiudi.go -------------------------------------------------------------------------------- /domain/dongqiudi/dongqiudi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/dongqiudi.md -------------------------------------------------------------------------------- /domain/dongqiudi/image/app_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/app_club.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/app_mark_ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/app_mark_ranking.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/app_nation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/app_nation.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/club.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/guojiadui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/guojiadui.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/market_ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/market_ranking.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/proxy_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/proxy_setting.png -------------------------------------------------------------------------------- /domain/dongqiudi/image/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/dongqiudi/image/wifi.png -------------------------------------------------------------------------------- /domain/githubtrending/githubtrending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/githubtrending.md -------------------------------------------------------------------------------- /domain/githubtrending/trending.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending.csv -------------------------------------------------------------------------------- /domain/githubtrending/trending.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending.go -------------------------------------------------------------------------------- /domain/githubtrending/trending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending.json -------------------------------------------------------------------------------- /domain/githubtrending/trending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending.md -------------------------------------------------------------------------------- /domain/githubtrending/trending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending.txt -------------------------------------------------------------------------------- /domain/githubtrending/trending_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/githubtrending/trending_test.go -------------------------------------------------------------------------------- /domain/gushiwen/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/common.go -------------------------------------------------------------------------------- /domain/gushiwen/gushiwen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/gushiwen.md -------------------------------------------------------------------------------- /domain/gushiwen/gushiwen_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/gushiwen_query.go -------------------------------------------------------------------------------- /domain/gushiwen/image/朝代和类型.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/image/朝代和类型.png -------------------------------------------------------------------------------- /domain/gushiwen/image/诗人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/image/诗人.png -------------------------------------------------------------------------------- /domain/gushiwen/image/诗文.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/image/诗文.png -------------------------------------------------------------------------------- /domain/gushiwen/query_dynasty_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/gushiwen/query_dynasty_type.go -------------------------------------------------------------------------------- /domain/maoyan/image/rank_2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/maoyan/image/rank_2018.png -------------------------------------------------------------------------------- /domain/maoyan/maoyan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/maoyan/maoyan.go -------------------------------------------------------------------------------- /domain/maoyan/maoyan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/maoyan/maoyan.md -------------------------------------------------------------------------------- /domain/maoyan/maoyan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/maoyan/maoyan_test.go -------------------------------------------------------------------------------- /domain/meizitu/meizitu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/meizitu/meizitu.go -------------------------------------------------------------------------------- /domain/nuomi/image/ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/nuomi/image/ranking.png -------------------------------------------------------------------------------- /domain/nuomi/nuomi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/nuomi/nuomi.go -------------------------------------------------------------------------------- /domain/nuomi/nuomi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/nuomi/nuomi.md -------------------------------------------------------------------------------- /domain/nuomi/nuomi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/nuomi/nuomi_test.go -------------------------------------------------------------------------------- /domain/pexels/pexels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/pexels/pexels.go -------------------------------------------------------------------------------- /domain/pexels/pexels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/pexels/pexels.md -------------------------------------------------------------------------------- /domain/pexels/pexels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/pexels/pexels_test.go -------------------------------------------------------------------------------- /domain/piaofang/image/全球票房排行榜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/piaofang/image/全球票房排行榜.png -------------------------------------------------------------------------------- /domain/piaofang/piaofang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/piaofang/piaofang.go -------------------------------------------------------------------------------- /domain/piaofang/piaofang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/piaofang/piaofang.md -------------------------------------------------------------------------------- /domain/piaofang/piaofang_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/domain/piaofang/piaofang_test.go -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/images/2.jpg -------------------------------------------------------------------------------- /infra/downloader/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/downloader/downloader.go -------------------------------------------------------------------------------- /infra/downloader/downloader_gorequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/downloader/downloader_gorequest.go -------------------------------------------------------------------------------- /infra/downloader/downloader_gorequest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/downloader/downloader_gorequest_test.go -------------------------------------------------------------------------------- /infra/downloader/downloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/downloader/downloader_test.go -------------------------------------------------------------------------------- /infra/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/errors/errors.go -------------------------------------------------------------------------------- /infra/initial/db-initial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/initial/db-initial.go -------------------------------------------------------------------------------- /infra/url/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/url/common.go -------------------------------------------------------------------------------- /infra/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/infra/url/url.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/main.go -------------------------------------------------------------------------------- /src/model/cbo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/src/model/cbo.go -------------------------------------------------------------------------------- /src/model/gushiwen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/src/model/gushiwen.go -------------------------------------------------------------------------------- /src/model/pexels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/src/model/pexels.go -------------------------------------------------------------------------------- /src/model/trending.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/src/model/trending.go -------------------------------------------------------------------------------- /ui/src/cbooo/controller.go: -------------------------------------------------------------------------------- 1 | package cbooo 2 | -------------------------------------------------------------------------------- /ui/src/cbooo/router.go: -------------------------------------------------------------------------------- 1 | package cbooo 2 | -------------------------------------------------------------------------------- /ui/src/chinafilm/controller.go: -------------------------------------------------------------------------------- 1 | package chinafilm 2 | -------------------------------------------------------------------------------- /ui/src/chinafilm/router.go: -------------------------------------------------------------------------------- 1 | package chinafilm 2 | -------------------------------------------------------------------------------- /ui/src/maoyan/controller.go: -------------------------------------------------------------------------------- 1 | package maoyan 2 | -------------------------------------------------------------------------------- /ui/src/maoyan/router.go: -------------------------------------------------------------------------------- 1 | package maoyan 2 | -------------------------------------------------------------------------------- /ui/src/nuomi/controller.go: -------------------------------------------------------------------------------- 1 | package nuomi 2 | -------------------------------------------------------------------------------- /ui/src/nuomi/router.go: -------------------------------------------------------------------------------- 1 | package nuomi 2 | -------------------------------------------------------------------------------- /ui/src/piaofang/controller.go: -------------------------------------------------------------------------------- 1 | package piaofang 2 | -------------------------------------------------------------------------------- /ui/src/piaofang/router.go: -------------------------------------------------------------------------------- 1 | package piaofang 2 | -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GopherCoder/Go-Spider/HEAD/vendor/vendor.json --------------------------------------------------------------------------------