Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qbhy/go-tumblr-crawler
Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频。golang版本
https://github.com/qbhy/go-tumblr-crawler
Last synced: about 1 month ago
JSON representation
Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频。golang版本
- Host: GitHub
- URL: https://github.com/qbhy/go-tumblr-crawler
- Owner: qbhy
- Created: 2018-04-20T17:43:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-13T01:53:14.000Z (over 3 years ago)
- Last Synced: 2024-06-20T08:14:56.756Z (7 months ago)
- Language: Go
- Homepage:
- Size: 4.92 MB
- Stars: 57
- Watchers: 6
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# go-tumblr-crawler
Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频。golang版本。## 配置和运行
配置需要爬取的站点: `sites.json`
ps: 站点不需要 `.tumblr.com` 后缀
```
[
{
"site": "truenorthshow",
"video": true,
"photo": true
},
{
"site": "photosbygerardo",
"video": true,
"photo": true
}
]
```
配置代理 : `proxies.json`
```
{
"http": "socks5://127.0.0.1:1080",
"https": "socks5://127.0.0.1:1080"
}
```
然后保存文件,双击运行 `./tumblr.exe`(还没编译好,你可以自行编译).
mac 用户可以直接运行 `./tumblr`