[Instagram] Extract comments
authorDéstin Reed <trox1972@users.noreply.github.com>
Wed, 28 Sep 2016 14:54:06 +0000 (16:54 +0200)
committerDéstin Reed <trox1972@users.noreply.github.com>
Wed, 28 Sep 2016 17:32:40 +0000 (19:32 +0200)
youtube_dl/extractor/instagram.py

index 8f7f232bea720ce0cfbf3c8e6aa9b38bddb93658..5ebc30a1058f408db8a8a562258a016533579a09 100644 (file)
@@ -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,
         }