├── .github ├── header.png └── posts_urls demo.gif ├── .gitignore ├── LICENSE ├── README.md ├── output examples ├── example_1.csv └── example_2.xlsx ├── requirements.txt └── src ├── config.py └── fb_post_scraper.py /.github/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/.github/header.png -------------------------------------------------------------------------------- /.github/posts_urls demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/.github/posts_urls demo.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /output examples/example_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/output examples/example_1.csv -------------------------------------------------------------------------------- /output examples/example_2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/output examples/example_2.xlsx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/src/config.py -------------------------------------------------------------------------------- /src/fb_post_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbderrahimAl/Posts-Scraper/HEAD/src/fb_post_scraper.py --------------------------------------------------------------------------------