https://github.com/shakotn/goardparser
REST API for parsing imageboards
https://github.com/shakotn/goardparser
concurrency golang gorilla-mux goroutine goroutines parallelism rest-api
Last synced: 4 months ago
JSON representation
REST API for parsing imageboards
- Host: GitHub
- URL: https://github.com/shakotn/goardparser
- Owner: SHAKOTN
- Created: 2017-06-15T13:19:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-07T13:57:25.000Z (over 8 years ago)
- Last Synced: 2025-03-04T15:26:19.092Z (7 months ago)
- Topics: concurrency, golang, gorilla-mux, goroutine, goroutines, parallelism, rest-api
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## REST API for parsing image boards like 4chan/2ch
### Why?
I have written this as I love .webms, .gifs etc and everytime I should
manually download them.This REST API parse your thread URL and return a JSON with all webm files
related to thread.To obtain webm links you should make request to url
`http://goarparser.com/parse_data`
with parameter
```json
{
"thread_link": "https://2ch.hk/{board_name}/res/{thread_id}.json"
}
```Response:
```json
{
"Files": [
{
"name": "{webm_id}.webm",
"path": "....webm",
"thumbnail": "....jpg"
},
]
}
```