├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── example.gif └── facebook_scraper.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhmd-Hisham/selenium_facebook_scraper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | example.gif 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhmd-Hisham/selenium_facebook_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhmd-Hisham/selenium_facebook_scraper/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhmd-Hisham/selenium_facebook_scraper/HEAD/example.gif -------------------------------------------------------------------------------- /facebook_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mhmd-Hisham/selenium_facebook_scraper/HEAD/facebook_scraper.py --------------------------------------------------------------------------------