`"comment_reactors": True` still results in `"comment_reactors": "<generator object PostExtractor.extract_reactors at 0x7f1fca7f4a40>",`
See original GitHub issueHello,
I am trying to write to json a post’s comments and all reactions - including comments’ reactors. I have set "comment_reactors": True
. Still in the post dump I get a few fields such as "comment_reactors": "<generator object PostExtractor.extract_reactors at 0x7f1fca7f4a40>",
although for others I actually get as expected:
"comment_reactors": [
{
"name": "Sara James",
...
Did I hit a limit in the number of nested levels the scrapers is able to get?
Issue Analytics
- State:
- Created 2 years ago
- Comments:14
Top Results From Across the Web
How to Use Generators and yield in Python
In this step-by-step tutorial, you'll learn about generators and yielding in Python. You'll create generator functions and generator expressions using ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@neon-ninja Yep, that worked. I don’t get a
generator object
anymore. Thanks!@fraba I get the feeling you’re not actually updating your local copy of the library. Try run
pip uninstall facebook-scraper
twice first.