├── .env ├── LICENSE ├── README.md ├── config └── settings.yaml ├── data └── raw │ └── proxies ├── media ├── review1.gif ├── review2.gif ├── review3.gif ├── ss ├── threads-scraper-hero.png └── threads-scraper.png ├── requirements.txt └── src ├── main.py └── scraper ├── exporter.py ├── parser.py └── utils ├── error_handler.py ├── logger.py └── proxy_manager.py /.env: -------------------------------------------------------------------------------- 1 | LOG_LEVEL=INFO 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Threads Scraper 2 | 3 | > Threads Scraper collects data from public Threads profiles, posts, and comment threads to help researchers, marketers, and developers analyze engagement trends. It extracts structured insights like post content, timestamps, engagement metrics, and media links, making it ideal for automation and social listening projects. Designed for reliability, this scraper can handle bulk URLs, user feeds, and continuous updates with high accuracy. 4 | 5 |
6 |
7 |
8 |
9 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
27 | Created by Bitbash, built to showcase our approach to Scraping and Automation!
28 | If you are looking for custom threads-scraper, you've just found your team — Let's Chat.👆👆
29 |
60 |
61 |
62 |
63 |
178 |
179 |
180 |
181 |
187 |
188 | 189 | “This scraper helped me gather thousands of Facebook posts effortlessly. 190 | The setup was fast, and exports are super clean and well-structured.” 191 | 192 |Nathan Pennington
193 | |
197 |
198 |
199 | 200 | “What impressed me most was how accurate the extracted data is. 201 | Likes, comments, timestamps — everything aligns perfectly with real posts.” 202 | 203 |Greg Jeffries
204 | |
208 |
209 |
210 | 211 | “It’s by far the best Facebook scraping tool I’ve used. 212 | Ideal for trend tracking, competitor monitoring, and influencer insights.” 213 | 214 |Karan
215 | |
219 |