├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── pull-request-template.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── changelog.MD ├── facebook_page_scraper ├── __init__.py ├── driver_initialization.py ├── driver_utilities.py ├── element_finder.py ├── scraper.py └── scraping_utilities.py ├── setup.py └── test.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/.github/ISSUE_TEMPLATE/pull-request-template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/README.md -------------------------------------------------------------------------------- /changelog.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/changelog.MD -------------------------------------------------------------------------------- /facebook_page_scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/__init__.py -------------------------------------------------------------------------------- /facebook_page_scraper/driver_initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/driver_initialization.py -------------------------------------------------------------------------------- /facebook_page_scraper/driver_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/driver_utilities.py -------------------------------------------------------------------------------- /facebook_page_scraper/element_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/element_finder.py -------------------------------------------------------------------------------- /facebook_page_scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/scraper.py -------------------------------------------------------------------------------- /facebook_page_scraper/scraping_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/facebook_page_scraper/scraping_utilities.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moda20/facebook_page_scraper/HEAD/test.py --------------------------------------------------------------------------------