twitter-media-dl/README.md

44 wiersze
1.7 KiB
Markdown
Czysty Zwykły widok Historia

2019-10-24 03:27:36 +00:00
# Download twitter resources
Download tweet images and videos. Run threads which has a event loop to download resources asynchronously.
```
pip3 install twitter-dl
```
```
usage: twitter-dl [-h] [-c CONFIDENTIAL]
[-s {large,medium,small,thumb,orig}]
2019-10-24 08:34:12 +00:00
[--video] [--nophoto]
2019-10-24 03:27:36 +00:00
[-l LIMIT] [--rts]
[--thread-number THREAD_NUMBER]
[--coro-number CORO_NUMBER]
[--since SID]
2019-10-24 08:34:12 +00:00
[--tweet] [--list]
2019-10-24 03:27:36 +00:00
resource_id dest
2019-10-24 08:34:12 +00:00
Download all images and/or videos uploaded by a twitter user you specify
2019-10-24 03:27:36 +00:00
positional arguments:
resource_id An ID of a twitter user. Also accept tweet url or
tweet id.
dest Specify where to put images
optional arguments:
-h, --help show this help message and exit
-c CONFIDENTIAL, --confidential CONFIDENTIAL
a json file containing a key and a secret
-s {large,medium,small,thumb,orig}, --size {large,medium,small,thumb,orig}
specify the size of images
2019-10-24 08:34:12 +00:00
--tweet indicate resource_id is a numbered tweet id
--list indicate resource_id is a list (user:slug)
2019-10-24 03:27:36 +00:00
--video include video
--nophoto exclude photo
-l LIMIT, --limit LIMIT
2019-10-24 08:34:12 +00:00
the maximum number of tweets to check (most recent first)
2019-10-24 03:27:36 +00:00
--rts save images contained in retweets
2019-10-24 08:34:12 +00:00
--thread-number THREAD_NUMBER
--coro-number CORO_NUMBER
--since SID
2019-10-24 03:27:36 +00:00
```