https://github.com/fiskeben/scrapejestad
Scraper library for Meet je stad project
https://github.com/fiskeben/scrapejestad
api go iot meetjestad weather
Last synced: 11 months ago
JSON representation
Scraper library for Meet je stad project
- Host: GitHub
- URL: https://github.com/fiskeben/scrapejestad
- Owner: fiskeben
- License: mit
- Created: 2019-02-09T20:31:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T17:48:16.000Z (over 3 years ago)
- Last Synced: 2025-07-28T20:05:10.707Z (11 months ago)
- Topics: api, go, iot, meetjestad, weather
- Language: Go
- Homepage:
- Size: 171 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scrape je stad
A Go library for scraping data from the
[Meet je stad](https://meetjestad.net)
project.
_This is not affiliated with Meet je stad in any way_
## Usage
Example program:
```go
package main
import (
"github.com/fiskeben/scrapejestad"
"net/url"
)
func main() {
u, err := url.Parse("https://meetjestad.net/data/sensors_recent.php?sensor=242&limit=10")
if err != nil {
panic(err)
}
data, err := scrapejestad.Read(u)
if err != nil {
panic(err)
}
// do stuff to data
fmt.Printf("first entry: %v\n", data[0])
}
```
## See also
See the
[meetjescraper](https://github.com/fiskeben/meetjescraper)
HTTP proxy to get a JSON based HTTP API in front of Meet je stad.