├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── music163-hotcomments-spider.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── create.sql ├── dao ├── config.go └── main.go ├── go.mod ├── go.sum ├── main.go ├── model └── hotComments.go ├── request ├── header.go ├── http.go ├── main.go ├── params.go ├── url.go └── userAgent.go ├── screenshots ├── 1564020212368.png ├── 1564020220493.png ├── 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545352542452541452545342542462541312d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg └── 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545362539342541462545342542422539382545352541452539442d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg └── util ├── check.go ├── convert.go ├── input.go ├── json.go ├── log.go └── strings.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/music163-hotcomments-spider.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/music163-hotcomments-spider.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/README.md -------------------------------------------------------------------------------- /create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/create.sql -------------------------------------------------------------------------------- /dao/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/dao/config.go -------------------------------------------------------------------------------- /dao/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/dao/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/main.go -------------------------------------------------------------------------------- /model/hotComments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/model/hotComments.go -------------------------------------------------------------------------------- /request/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/header.go -------------------------------------------------------------------------------- /request/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/http.go -------------------------------------------------------------------------------- /request/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/main.go -------------------------------------------------------------------------------- /request/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/params.go -------------------------------------------------------------------------------- /request/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/url.go -------------------------------------------------------------------------------- /request/userAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/request/userAgent.go -------------------------------------------------------------------------------- /screenshots/1564020212368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/screenshots/1564020212368.png -------------------------------------------------------------------------------- /screenshots/1564020220493.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/screenshots/1564020220493.png -------------------------------------------------------------------------------- /screenshots/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545352542452541452545342542462541312d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/screenshots/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545352542452541452545342542462541312d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg -------------------------------------------------------------------------------- /screenshots/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545362539342541462545342542422539382545352541452539442d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/screenshots/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2545362539342541462545342542422539382545352541452539442d25453525393025393154412545362538442539302545352538412541392d677265656e2e737667.svg -------------------------------------------------------------------------------- /util/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/check.go -------------------------------------------------------------------------------- /util/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/convert.go -------------------------------------------------------------------------------- /util/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/input.go -------------------------------------------------------------------------------- /util/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/json.go -------------------------------------------------------------------------------- /util/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/log.go -------------------------------------------------------------------------------- /util/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonAKing/music163-hotcomments-spider/HEAD/util/strings.go --------------------------------------------------------------------------------