From 7bb38b8397d640a2d8583820bf6c3864cf51e34c Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 2 Apr 2021 11:28:04 +0200 Subject: Adding placeholder text and image content to FB provider --- bin/get-fb-content.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/get-fb-content.py') 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)) -- cgit v1.2.3