An open API service indexing awesome lists of open source software.

https://github.com/fromsko/powerspider

内网电费爬虫,基于Go 20 实现
https://github.com/fromsko/powerspider

Last synced: 12 months ago
JSON representation

内网电费爬虫,基于Go 20 实现

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)
}
}
```