Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/himidori/vk-photos-downloader
downloading all photos from a VK dialog
https://github.com/himidori/vk-photos-downloader
golang vk vkapi
Last synced: 15 days ago
JSON representation
downloading all photos from a VK dialog
- Host: GitHub
- URL: https://github.com/himidori/vk-photos-downloader
- Owner: himidori
- Created: 2018-02-01T15:14:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-26T00:19:05.000Z (over 6 years ago)
- Last Synced: 2024-04-18T11:38:05.396Z (8 months ago)
- Topics: golang, vk, vkapi
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tool to download photos from VK dialogs
# usage, CLI arguments
```
-u : your VK login (username or phone number. used if no token was provided)
-p : your VK password (used if no token was provided)
-t : VK access token (to be used instead of user/pass)
-uid : user id (dialog) to download photos from (omit to download photos from every available dialog)
-r : amount of goroutines to use for concurrent photo download
-d : device to use for authorization (0 - iPhone, 1 - android, 2 - WPhone)
-h : print help
```# example of usage
downloading photos from one dialog using 20 goroutines, authorizing by login and password
```
./vkphotos -u xxx -p xxx -uid xxx -r 20
```
downloading photos from every dialog using 20 goroutines, authorizing by token
```
./vkphotos -t xxx -r 20
```