Facebook Scraper
https://github.com/kevinzg/facebook-scraper/blob/master/README.md import json from facebook_scraper import get_posts def export_posts_as_json(posts, file_path): with open(file_path, ‘w’, encoding=’utf-8′) as file: json.dump(posts, file, ensure_ascii=False, indent=4)...