diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/get-fb-content.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/get-fb-content.py b/bin/get-fb-content.py index c7238e0..180c7b4 100644 --- a/bin/get-fb-content.py +++ b/bin/get-fb-content.py @@ -13,7 +13,8 @@ for post in get_posts(sys.argv[1], cookies=path.join(BASEDIR, '../config/faceboo posts.append({ 'id': post['post_id'], 'time': str(post['time']), - 'texts': [t.strip() for t in post['text'].split('\n') if t] + 'texts': [t.strip() for t in post['text'].split('\n') if t], + 'images': post['images'] }) print(json.dumps(posts)) |