aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDéstin Reed <trox1972@users.noreply.github.com>2016-09-28 16:54:06 +0200
committerDéstin Reed <trox1972@users.noreply.github.com>2016-09-28 19:32:40 +0200
commita56e74e2713ed45f4096735cf49d1d97b5e75389 (patch)
tree8da6cf89d77c9099a3699807cff52de4fed810fb
parent45cae3b021828cc6f7a67c7a14645ae6f0806f59 (diff)
downloadyoutube-dl-a56e74e2713ed45f4096735cf49d1d97b5e75389.zip
youtube-dl-a56e74e2713ed45f4096735cf49d1d97b5e75389.tar.gz
youtube-dl-a56e74e2713ed45f4096735cf49d1d97b5e75389.tar.bz2
[Instagram] Extract comments
-rw-r--r--youtube_dl/extractor/instagram.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py
index 8f7f232..5ebc30a 100644
--- a/youtube_dl/extractor/instagram.py
+++ b/youtube_dl/extractor/instagram.py
@@ -29,6 +29,7 @@ class InstagramIE(InfoExtractor):
'uploader': 'Naomi Leonor Phan-Quang',
'like_count': int,
'comment_count': int,
+ 'comments': list,
},
}, {
# missing description
@@ -44,6 +45,7 @@ class InstagramIE(InfoExtractor):
'uploader': 'Britney Spears',
'like_count': int,
'comment_count': int,
+ 'comments': list,
},
'params': {
'skip_download': True,
@@ -101,6 +103,14 @@ class InstagramIE(InfoExtractor):
uploader_id = media.get('owner', {}).get('username')
like_count = int_or_none(media.get('likes', {}).get('count'))
comment_count = int_or_none(media.get('comments', {}).get('count'))
+ comments = [{
+ 'author': comment.get('user', {}).get('username'),
+ 'author_id': comment.get('user', {}).get('id'),
+ 'id': comment.get('id'),
+ 'text': comment.get('text'),
+ 'timestamp': int_or_none(comment.get('created_at')),
+ } for comment in media.get('comments', {}).get('nodes', [])
+ if comment.get('text')]
if not video_url:
video_url = self._og_search_video_url(webpage, secure=False)
@@ -131,6 +141,7 @@ class InstagramIE(InfoExtractor):
'uploader': uploader,
'like_count': like_count,
'comment_count': comment_count,
+ 'comments': comments,
}