https://github.com/fromsko/powerspider
内网电费爬虫,基于Go 20 实现
https://github.com/fromsko/powerspider
Last synced: 12 months ago
JSON representation
内网电费爬虫,基于Go 20 实现
- Host: GitHub
- URL: https://github.com/fromsko/powerspider
- Owner: Fromsko
- License: mit
- Created: 2023-05-29T09:07:59.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-17T04:05:15.000Z (almost 3 years ago)
- Last Synced: 2025-06-07T11:34:52.811Z (about 1 year ago)
- Language: Go
- Size: 1.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PowerSpider
This is a project for school private net where help our to get ele-money data.
# Examples
```go
package main
import (
"log"
"PowerSpider/config"
"PowerSpider/core"
)
func main() {
// Init configure file
config.InitConfig(
config.Config{
Timer : config.Timer{
TimeUint: "hourse",
TimeInfo: 2,
},
ResDir: "res",
Proxy : "http://localhost:7980"
BaseUrl : "http://10.13.14.20:9999/"
}
)
// Start appliction
if err := core.Start(); err != nil {
log.Fprint("[Error] %s", err)
}
}
```