fork download
  1. comment_dict = {
  2. u'http://w...content-available-to-author-only...o.de/location/date-in-caroussel/2406/': {
  3. u'comments': {
  4. u'paging': {
  5. u'cursors': {
  6. u'after': u'MQ==', u'before': u'Mg=='
  7. }
  8. },
  9. u'data': [
  10. {
  11. u'from': {u'name': u'John Purlore', u'id': u'100005454794537'},
  12. u'like_count': 0,
  13. u'can_remove': False,
  14. u'created_time': u'2013-10-30T09:02:51+0000',
  15. u'message': u'Essen ist richtig lecker\n',
  16. u'id': u'573597026010502_13875759',
  17. u'user_likes': False
  18. },
  19. ]
  20. }
  21. }
  22. }
  23.  
  24.  
  25. print comment_dict['http://w...content-available-to-author-only...o.de/location/date-in-caroussel/2406/']['comments']['data']
  26.  
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
[{u'from': {u'name': u'John Purlore', u'id': u'100005454794537'}, u'like_count': 0, u'can_remove': False, u'created_time': u'2013-10-30T09:02:51+0000', u'message': u'Essen ist richtig lecker\n', u'id': u'573597026010502_13875759', u'user_likes': False}]