facebook-post-scraper icon indicating copy to clipboard operation
facebook-post-scraper copied to clipboard

Facebook Post Scraper 🕵️🖱️

Results 31 facebook-post-scraper issues
Sort by recently updated
recently updated
newest added

Any idea what is wrong? My Command: python scraper.py -p "https://www.facebook.com/icc/" -l 10 Error: Traceback (most recent call last): File "scraper.py", line 322, in postBigDict = extract(page=args.page, numOfPost=args.len, infinite_scroll=infinite, scrape_comment=scrape_comment)...

Looking at the following code segment: ``` cmmBtn = browser.find_elements_by_xpath('//a[@class="_3hg- _42ft"]') for btn in cmmBtn: try: btn.click() except: pass time.sleep(1) moreCmm= browser.find_elements_by_xpath('//a[@class="_4sxc _42ft"]') for moreCmmBtn in moreCmm: try: moreCmmBtn.click() except:...

bug

Facebook has updated its layout, so all the parsing has to be reviewed :(

Seems to not mantain the login state after login....

I'm having this error: NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[id="loginbutton"]"} (Session info: chrome=85.0.4183.83) Any advice?

Thank you for excellent work! I still have some trouble scraping comment responses, I'll try to solve it asap and create new pull request

First of all, thanks for this scrapper! My problem is that when I download a large number of posts (> 4000) with 5-10 comments for each post, chrome just crashes....

Complete noob here, so excuse my naivete I was getting the error "'charmap' codec can't encode characters ", I googled the error and changed the code ``` if args.usage ==...

This is an amazing scrapper I really appreciate you for this. Is this scrapper used to download the comments of a particular post. I mean if I have to download...