A photomgr is a Go package to browse some info (such as PTT/CK101.. more) and download image if any default image in that article. This tool help you to download those photos for your backup, all the photos still own by original creator.
go get github.com/kkdai/photomgr
refer cmd/ptt_cli
or cmd/ck101_cli
for more detail.
ptt := NewPTT()
//Set path for download image
ptt.BaseDir = "YOURPATH"
pageIndex := 0
totalPostCount := ptt.ParsePttPageByIndex(pageIndex)
//iterator this sample
for i := 0; i < totalPostCount ; i_++ {
title := p.GetPostTitleByIndex(i)
likeCount := p.GetPostStarByIndex(i)
fmt.Printf("%d:[%d★]%s\n", i, likeCount, title)
//download image
url := p.GetPostUrlByIndex(i)
p.Crawler(url, 25)
}
If you want to run it directly, just run
go install github.com/kkdai/photomgr/cmd/ptt_cli
go install github.com/kkdai/photomgr/cmd/ck101_cli
Refer iloveptt for detail commands.
To let your package support gomobile, need note as follow:
- Only support
string
,int
(no slice and array) - Need a constructor for your structure such as
NewYOUROBJ() *YOUROBJ
.
Here is howto to teach you how to use this in iOS.
//Get gomobile and init it
//It might take some time
go get golang.org/x/mobile/cmd/gomobile
gomobile init
//Get this package and build package for iOS
go get github.com/kkdai/photomgr
gomobile bind -target=ios github.com/kkdai/photomgr
//It will generate a photomgr.framework in your cd $GOPATH/src/github.com/kkdai/photomgr
//Drag photomgr.framework in your xcode project
for more detail, check my iOS project PhotoViewer
- PTT
- gomobile refine
- download image
- CK101
- broad travaeral
- download image
- Timliao
- broad travaeral
- download image
- Gigacircle
- broad travaeral
- download image
Please open up an issue on GitHub before you put a lot efforts on pull request.
The code submitting to PR must be filtered with gofmt
It is one of my project 52.
This package is licensed under MIT license. See LICENSE for details.