Facebook Scraper GitHub: क्या अभी भी काम करता है और क्या नहीं

अंतिम अपडेट: August 5, 2026
Facebook Scraper GitHub: क्या अभी भी काम करता है और क्या नहीं

GitHub पर "facebook scraper" खोजने पर 475 repositories मिलती हैं। लेकिन इनमें से सिर्फ 62 पिछले छह महीनों में अपडेट हुई हैं।

"उपलब्ध" और "वास्तव में काम करने वाला" — इन दोनों के बीच का यही फर्क 2026 में GitHub पर Facebook scraping की पूरी कहानी है।

मैंने repo के issue tabs, Reddit की शिकायतों और इन टूल्स के असली output को काफी समय तक खंगाला है। पैटर्न साफ है: ज़्यादातर top-starred projects चुपचाप टूट चुके हैं, maintainers आगे बढ़ चुके हैं, और Facebook के anti-scraping defenses लगातार और मजबूत होते जा रहे हैं। डेवलपर्स और business users बार-बार वही search results खोलते हैं, वही repos install करते हैं, और आखिर में वही खाली output पाते हैं। यह लेख 2026 की सच्ची स्थिति पर आधारित एक reality check है — यानी कौन-से repos अभी भी आपके समय के लायक हैं, Facebook उन्हें तोड़ने के लिए क्या कर रहा है, और कब आपको GitHub को पूरी तरह छोड़ देना चाहिए।

लोग GitHub पर Facebook Scraper क्यों खोजते हैं

इस search के पीछे की ज़रूरतें सालों से लगभग वही हैं — भले ही tools लगातार fail होते रहें:

  • Lead generation: Outreach के लिए business page की contact info (emails, phone numbers, addresses) निकालना
  • Marketplace monitoring: Ecommerce या arbitrage के लिए product listings, prices और seller info ट्रैक करना
  • Group research: Market research, OSINT या community management के लिए posts और comments archive करना
  • Content और post archiving: Public page posts, reactions, images और timestamps सुरक्षित करना
  • Events aggregation: Event titles, dates, locations और organizers इकट्ठा करना

GitHub इसलिए आकर्षक लगता है क्योंकि यहाँ code दिखता है, cost लगभग शून्य है, community maintenance का भरोसा मिलता है (कम-से-कम सिद्धांत में), और fields तथा pipelines पर पूरा control रहता है।

समस्या यह है कि stars और forks का मतलब यह नहीं होता कि चीज़ अभी काम भी करती है। April 2026 तक stars के हिसाब से top 10 exact-phrase repos में से सभी 10 12 महीने से ज़्यादा पुराने थे। यह कोई अपवाद नहीं, बल्कि आम स्थिति है।

एक Reddit user ने November 2025 thread में छह महीने की कोशिशों के बाद साफ कहा कि यह "external data scraping application" के लिए भुगतान किए बिना या Python + JS rendering + काफी computing power के बिना लगभग असंभव था। एक और user ने April 2026 discussion में इसे सीधे कहा: "Facebook उन सबसे मुश्किल platforms में से एक है जिन्हें scrape करना बेहद कठिन है क्योंकि वे automation को आक्रामक रूप से block करते हैं" और browser automation "fragile" है क्योंकि Facebook अपना DOM लगातार बदलता रहता है।

ज़रूरतें वास्तविक हैं। Demand वास्तविक है। Frustration भी वास्तविक है। यह लेख उसी gap को समझने की कोशिश है।

आखिर GitHub पर Facebook Scraper Repo होता क्या है?

GitHub पर "Facebook scraper" आमतौर पर एक open-source script होता है — ज़्यादातर Python में — जो Facebook pages, posts, groups, Marketplace या profiles से public data programmatically निकालता है। ये सभी एक जैसे काम नहीं करते। तीन architectures सबसे ज़्यादा मिलते हैं:

Browser-Automation Scrapers बनाम API Wrappers बनाम Direct HTTP Scrapers

ApproachTypical stackStrengthWeakness
Browser automationSelenium, Playwright, PuppeteerLogin walls को संभाल सकता है, असली user behavior जैसा दिखता हैधीमा, resource-heavy, सही तरह से configure न हो तो आसानी से पहचान लिया जाता है
Official API wrapperMeta Graph API / Pages APIस्थिर, documented, अनुमति मिलने पर compliantबहुत सीमित — अब ज़्यादातर public post/group data उपलब्ध नहीं है
Direct HTTP scraperrequests, HTML parsing, undocumented endpointsकाम करे तो तेज़ और हल्काFacebook का page structure या anti-bot measures बदलते ही टूट जाता है

kevinzg/facebook-scraper classic direct-HTTP example है: यह direct requests और parsing के ज़रिए public pages को "without an API key" scrape करता है। apurvmishra99/facebook-scraper-selenium browser-automation का example है। minimaxir/facebook-page-post-scraper पुराने Graph API युग का प्रतिनिधि है, जब scripts official endpoints से page/group posts निकाल सकते थे — जो अब broadly available नहीं रहे।

इन repos में आम तौर पर जो data target किया जाता है, उसमें post text, timestamps, reaction/comment counts, image URLs, page metadata (category, phone, email, follower count), Marketplace listing fields, और group या event metadata शामिल हैं।

2026 में असली tradeoff language preference नहीं है। असली सवाल यह है कि किस तरह की failure आप झेल सकते हैं।

2026 Facebook Scraper GitHub Freshness Audit: कौन-से Repo सच में काम करते हैं?

मैंने GitHub पर सबसे ज़्यादा starred और सबसे ज़्यादा recommended Facebook scraper repos को 2026 के वास्तविक data के साथ audit किया — README claims के आधार पर नहीं, बल्कि actual commit dates, issue queues और community reports के आधार पर। यही सबसे महत्वपूर्ण हिस्सा है।

पूरा Freshness Audit Table

RepoStarsLast PushOpen IssuesLanguage / RuntimeWhat It Still ScrapesStatus
kevinzg/facebook-scraper3,1572024-06-22438Python ^3.6सीमित public page posts, कुछ comments/images, page metadata⚠️ आंशिक रूप से broken / stale
moda20/facebook-scraper1102024-06-1429Python ^3.6kevinzg जैसा ही + Marketplace helper methods⚠️ आंशिक रूप से broken / stale fork
minimaxir/facebook-page-post-scraper2,1282019-05-2353Python 2/3 era, Graph API dependentसिर्फ ऐतिहासिक संदर्भ❌ छोड़ा जा चुका
apurvmishra99/facebook-scraper-selenium2322020-06-287Python + SeleniumPage scraping के लिए browser automation❌ छोड़ा जा चुका
passivebot/facebook-marketplace-scraper3752024-04-293Python 3.x + Playwright 1.40browser automation के ज़रिए Marketplace listings⚠️ नाज़ुक / niche
Mhmd-Hisham/selenium_facebook_scraper372022-11-291Python + Seleniumसामान्य Selenium scraping❌ छोड़ा जा चुका
anabastos/faceteer202023-07-115JavaScriptautomation-oriented❌ जोखिम भरा / कम प्रमाण

कुछ बातें तुरंत सामने आती हैं:

  • सबसे active दिखने वाला fork (moda20) भी June 2024 के बाद update नहीं हुआ।
  • Issue queues README से कहीं तेज़ी से असली स्थिति दिखा देती हैं।
  • kevinzg और moda20 दोनों अपनी pyproject.toml files में अभी भी Python ^3.6 लिखते हैं — यह संकेत है कि dependency baseline modernize नहीं हुआ।

kevinzg/facebook-scraper

GitHub पर सबसे जाना-पहचाना Python Facebook scraper। इसकी README page scraping, group scraping, credentials या cookies के ज़रिए login, और comments, image, images, likes, post_id, post_text, text, time जैसे post-level fields का वर्णन करती है।

लेकिन operational signal कमज़ोर है:

  • Last push: June 22, 2024
  • Open issues: 438 — जिनमें "Example Scrape does not return any posts" जैसे titles शामिल हैं
  • Maintainer ने हाल की issues पर जवाब नहीं दिया

Verdict: आंशिक रूप से broken। कम-volume public page experiments और field-name reference के रूप में अभी भी काम का है, लेकिन production use के लिए भरोसेमंद नहीं।

moda20/facebook-scraper (Community Fork)

kevinzg का सबसे ज़्यादा दिखाई देने वाला fork, जिसमें अतिरिक्त options और Marketplace-oriented helpers जैसे extract_listing शामिल हैं, जैसा कि इसकी README में बताया गया है।

इसकी issue queue समस्या को साफ़ दिखाती है:

जब simplified mbasic frontend बदलता है या गायब हो जाता है, तो scrapers की एक पूरी category एक साथ कमजोर पड़ जाती है।

Verdict: सबसे notable fork, लेकिन 2026 में stale और fragile भी। यदि आप GitHub-based solution पर अड़े हैं तो पहले यही try करने लायक है, लेकिन stability की उम्मीद न रखें।

minimaxir/facebook-page-post-scraper

कभी यह public Pages और open Groups से posts, reactions, comments और metadata CSV में निकालने के लिए बहुत उपयोगी Graph API tool था। इसकी README अभी भी बताती है कि Facebook app के App ID और App Secret का उपयोग कैसे करना है।

2026 में यह एक historical artifact है:

  • Last push: May 23, 2019
  • Open issues: 53 — जिनमें "HTTP 400 Error Bad Request" और "No data retrieved!!" शामिल हैं

Verdict: छोड़ा जा चुका। यह एक ऐसे API permission model पर बहुत निर्भर था जिसे Meta ने बाद में काफी सीमित कर दिया।

अन्य उल्लेखनीय repos

  • passivebot/facebook-marketplace-scraper: Marketplace use cases के लिए उपयोगी, लेकिन इसकी issue queue में "login to view the content," "CSS selectors outdated," और "Getting blocked" जैसे मुद्दे हैं। यह Marketplace scraping में क्या टूटता है, इसका एक-लाइन case study है।
  • apurvmishra99/facebook-scraper-selenium: सितंबर 2020 से एक issue सीधे पूछता है "Does it work with new Facebook layout?" — यह लगभग सब कुछ बता देता है।
  • Mhmd-Hisham/selenium_facebook_scraper और anabastos/faceteer: इनमें इतनी current activity नहीं है कि confidence मिले।

facebook_scraper_repo_audit_v1.png

Facebook के Anti-Scraping Defenses: GitHub Scraper किसके खिलाफ लड़ रहे हैं

इस विषय पर ज़्यादातर लेख बस vague "ToS देख लें" disclaimers देते हैं। वह उपयोगी नहीं है।

Facebook, बड़े platforms में से सबसे aggressive anti-scraping systems में से एक चलाता है। इन defense layers को समझना एक working scraper और खाली output पर बिताई गई दोपहर के बीच का अंतर है।

Meta की अपनी February 2025 engineering post एक "Anti Scraping team" का वर्णन करती है जो अपने codebase में static analysis के ज़रिए scraping vectors पहचानती है, cease-and-desist letters भेजती है, accounts disable करती है, और rate-limiting systems पर निर्भर करती है। यह कोई hypothetical बात नहीं — यह एक संगठित प्रयास है।

facebook_scraper_defense_layers_v1.png

Randomized DOM और CSS Class Names

Facebook जानबूझकर HTML element IDs, class names और page structure को randomize करता है। जैसा कि एक r/webscraping commenter ने कहा: "Facebook पर कोई normal scraper काम नहीं कर सकता। HTML हर refresh के साथ बदल जाता है।"

क्या टूटता है: जो XPath और CSS selectors पिछले हफ्ते काम कर रहे थे, वे आज कुछ भी नहीं लौटाते।

Countermeasure: जहाँ संभव हो, text-based या attribute-based selectors इस्तेमाल करें। AI-based parsing, जो rigid selectors पर निर्भर होने के बजाय page content पढ़ती है, यहाँ बेहतर काम करती है। Selector maintenance को recurring cost मानकर चलना होगा।

Login Walls और Session Management

कई Facebook surfaces — profiles, groups, कुछ Marketplace listings — देखने के लिए login मांगती हैं। Headless browsers को redirect कर दिया जाता है या stripped-down HTML मिलती है। passivebot Marketplace scraper की issue tab में "login to view the content" एक प्रमुख शिकायत है।

क्या टूटता है: Anonymous requests content मिस कर देती हैं या सीधे redirect हो जाती हैं।

Countermeasure: असली browser session के session cookies इस्तेमाल करें, या ऐसे browser-based scraping tools लें जो आपके logged-in session के भीतर काम करें। Rotating accounts संभव हैं, लेकिन जोखिम भरे हैं।

Digital Fingerprinting

Meta की engineering post कहती है कि unauthorized scrapers अक्सर "hide themselves by mimicking the ways users would normally use a product" — यानी detection में browser-quality और behavior-quality बेहद महत्वपूर्ण हैं। March और April 2026 की community discussions में भी anti-detect browsers और consistent fingerprints की सिफारिश जारी है।

क्या टूटता है: साधारण off-the-shelf Selenium या Puppeteer setups आसानी से पहचान लिए जाते हैं।

Countermeasure: undetected-chromedriver या anti-detect browser profiles जैसे tools इस्तेमाल करें। सिर्फ user-agent spoofing से ज़्यादा महत्वपूर्ण realistic sessions और consistent fingerprints हैं।

IP-Based Rate Limiting और Blocking

Meta की engineering post rate limiting को defense strategy का हिस्सा मानकर स्पष्ट रूप से चर्चा करती है, जिसमें follower-list counts को cap करना भी शामिल है ताकि अधिक requests भेजनी पड़ें और फिर वे rate controls trigger हों। व्यवहार में users ने 10 groups पर 10-second intervals में post करने के बाद rate-limiting की शिकायत की है।

क्या टूटता है: एक ही IP से bulk requests मिनटों में throttled या blocked हो जाती हैं। Datacenter proxy IPs अक्सर पहले से ही blocked रहते हैं।

Countermeasure: datacenter proxies की जगह residential proxy rotation और समझदारी से request pacing अपनाएँ।

GraphQL Schema Changes

कुछ scrapers Facebook के internal GraphQL endpoints पर निर्भर करते हैं क्योंकि वे raw HTML की तुलना में साफ structured data लौटाते हैं। लेकिन Meta internal GraphQL के लिए कोई stability guarantee प्रकाशित नहीं करता, इसलिए ये queries चुपचाप टूट जाती हैं — error देने की बजाय empty data लौटाती हैं।

क्या टूटता है: structured extraction बिना warning के कुछ भी नहीं लौटाती।

Countermeasure: validation checks जोड़ें, schema endpoints monitor करें, और known working queries को pin करें। Maintenance के लिए तैयार रहें।

Anti-Scraping Defense Summary

Defense LayerHow It Breaks Your ScraperPractical Countermeasure
Layout churn / unstable selectorsXPath और CSS selectors कुछ भी नहीं या आंशिक fields लौटाते हैंResilient anchors चुनें, visible page output से validate करें, maintenance मानकर चलें
Login wallsLogged-out requests content मिस करती हैं या redirect हो जाती हैंValid session cookies या browser-session tools इस्तेमाल करें
FingerprintingStandard automation synthetic लगती हैReal browsers, consistent session quality, anti-detect measures इस्तेमाल करें
Rate limitingEmpty output, blocks, throttlingधीमा pacing, छोटे batch sizes, residential proxy rotation
Internal query changesStructured extraction silently empty data लौटाती हैValidation checks जोड़ें, query maintenance की उम्मीद रखें

जब GitHub Repositories फेल हों: अनुमति प्राप्त alternative चुनें

एक broken repository, platform controls को bypass करने का कारण नहीं है। पहले business question साफ़ करें: क्या आपको page-level analytics, advertising transparency, public contact directory, या product catalogue चाहिए? इनमें से कई ज़रूरतें official Meta product, permissioned API, या किसी non-Meta public source से पूरी हो सकती हैं।

उदाहरण के लिए, Graph API का उपयोग तभी करें जब app और use case के लिए आवश्यक permissions मौजूद हों; Meta research programmes का उपयोग तभी करें जब आप eligible हों; और advertising information के लिए Meta Ad Library का उपयोग करें। Lead research, pricing, और local-business discovery के लिए उन independent public websites को प्राथमिकता दें जिनके terms और privacy obligations आप सीधे जाँच सकते हैं।

असली Output Samples: आपको वास्तव में क्या मिलता है

ज़्यादातर competitor articles code snippets दिखाते हैं, लेकिन असली output कभी नहीं। नीचे बताया गया है कि हर approach से आप वास्तविक रूप से क्या उम्मीद कर सकते हैं।

Sample Output: kevinzg/facebook-scraper (या Active Fork)

README example के अनुसार, एक scraped public post JSON में कुछ यूँ लौटता है:

{
  "comments": 459,
  "comments_full": null,
  "image": "https://...",
  "images": ["https://..."],
  "likes": 3509,
  "post_id": "2257188721032235",
  "post_text": "Don't let this diminutive version...",
  "text": "Don't let this diminutive version...",
  "time": "2019-04-30T05:00:01"
}

ध्यान दें comments_full जैसे nullable fields पर। 2026 में और ज़्यादा fields खाली या missing लौट सकती हैं — यह आमतौर पर blocking signal होता है, न कि मामूली glitch। Output raw JSON होता है और उसे आगे process करना पड़ता है।

Sample Output: Facebook Graph API

Meta का current Pages API page info requests जैसे GET /<PAGE_ID>?fields=id,name,about,fan_count document करता है। Page reference में followers_count, fan_count, category, emails, phone और अन्य public metadata जैसे fields शामिल हैं — लेकिन केवल सही permissions के साथ, जैसे Page Public Content Access or Page Public Metadata Access

यह data shape अधिकांश GitHub scraper users की उम्मीदों से कहीं छोटा है। यह page-centric है, permission-gated है, और arbitrary public-post या group scraping का विकल्प नहीं है।

Facebook Data Type × Access Route Matrix

Facebook data typePreferable starting pointKey limitation
Assets your organisation administersOfficial Meta management tools and approved APIsPermissions and available fields vary
Advertising observationsMeta Ad Libraryकेवल वही fields और filters जो यह दिखाती है
Public business details needed for lead researchA permitted non-Meta directory or publisher siteSource की terms और privacy obligations जाँचें
Private, closed-group, login-gated, or account-only materialDo not automate collectionइसके लिए authorisation प्राप्त रास्ता खोजें

Step-by-Step: GitHub से Facebook Scraper कैसे सेट करें (जब यह वाकई समझ में आए)

अगर आपने freshness audit पढ़ लिया है और फिर भी GitHub route अपनाना चाहते हैं, तो ठीक है। यहाँ practical path है — और वहाँ भी, जहाँ चीज़ें टूटती हैं, उसकी ईमानदार नोट्स के साथ।

facebook_scraper_setup_flow_v1.png

Step 1: सही Repo चुनें (Freshness Audit देखें)

Audit table पर वापस जाएँ। अपने target surface से मेल खाने वाला सबसे कम stale repo चुनें। कुछ भी install करने से पहले Issues tab देखें — recent issue titles README से कहीं बेहतर बताते हैं कि अभी क्या काम कर रहा है।

Step 2: अपना Python Environment सेट करें

python3 -m venv fb-scraper-env
source fb-scraper-env/bin/activate
pip install -r requirements.txt

आम अड़चन: dependency conflicts, खासकर Selenium/Playwright versions के साथ। kevinzg और moda20 दोनों अपनी pyproject.toml में Python ^3.6 घोषित करते हैं — यह पुराना baseline newer libraries से टकरा सकता है। passivebot का Marketplace scraper playwright==1.40.0 पर pin है, जो experimentation के लिए ठीक है, लेकिन durability का प्रमाण नहीं।

Step 3: Proxies और Anti-Detection Configure करें

यदि आप quick test से आगे कुछ कर रहे हैं:

  • Residential proxy rotation सेट करें (Facebook-specific IP pools वाले providers देखें)
  • Browser automation उपयोग कर रहे हों तो undetected-chromedriver install करें या anti-fingerprinting configure करें
  • यह step skip न करें — standard Selenium या Puppeteer बहुत जल्दी flag हो जाते हैं

Step 4: छोटा Test Scrape चलाएँ और Output Validate करें

एक सार्वजनिक page से शुरू करें, बड़े batch से नहीं। Output ध्यान से जाँचें:

  • खाली fields या missing data का मतलब अक्सर Facebook defenses आपको रोक रही हैं
  • जो page पर browser में दिख रहा है, उससे output की तुलना करें
  • एक page का successful test, एक सुंदर README से ज़्यादा महत्वपूर्ण है

Step 5: Errors, Rate Limits, और Maintenance संभालें

  • retry logic और error handling जोड़ें
  • selectors या configurations को नियमित रूप से update करने के लिए तैयार रहें — यह ongoing maintenance है, set-and-forget नहीं
  • अगर scraper maintain करने में data इस्तेमाल करने से ज़्यादा समय लगने लगे, तो यह no-code path पर फिर से सोचने का संकेत है

Facebook Scraping के कानूनी और नैतिक पहलू

Platform terms, privacy rules, contractual obligations और data-protection laws — ये सभी लागू हो सकते हैं। Public visibility का मतलब automated collection की blanket permission नहीं होता। Data को minimum रखें, purpose और lawful basis document करें, और commercial या large-scale programmes के लिए legal advice लें।

किसी browser extension, logged-in session, या “public” label को Meta products से automated collection की permission न समझें।

मुख्य निष्कर्ष: 2026 में Facebook scraping के लिए वास्तव में क्या काम करता है

Repository activity, issue queues और current platform rules, star count या पुराने README से कहीं ज़्यादा महत्वपूर्ण हैं। जब business question उस asset से जुड़ा हो जिसे आप administer करते हैं, तो official Meta tools और approved APIs से शुरुआत करें। Market research, lead research और pricing questions के लिए कई बार permitted non-Meta source को govern और document करना आसान होता है।

FAQs

क्या 2026 में GitHub पर कोई working Facebook scraper है?

हाँ, लेकिन options सीमित हैं। सबसे notable moda20/facebook-scraper है, जो kevinzg के original repo का fork है — current status के लिए ऊपर दिया गया freshness audit table देखें। यह public page posts और कुछ metadata को आंशिक रूप से scrape कर सकता है, लेकिन इसकी issue queue mbasic टूटने और empty output जैसी core समस्याएँ दिखाती है। बाकी ज़्यादातर repos या तो abandoned हैं या पूरी तरह broken।

क्या मैं बिना coding के Facebook scrape कर सकता हूँ?

Manual research के लिए Facebook के अपने search और management tools इस्तेमाल करें। Repeatable या programmatic काम के लिए official API और उसकी permissions का आकलन करें, या workflow को किसी permitted non-Meta source के आसपास redesign करें। No-code convenience platform, privacy या contractual obligations को खत्म नहीं करती।

क्या Facebook scrape करना legal है?

Facebook के Terms of Service अनुमति के बिना automated data collection को रोकते हैं। Meta इसे account bans, cease-and-desist letters और lawsuits के ज़रिए actively लागू करता है। Legality jurisdiction और use case के अनुसार बदलती है। सार्वजनिक business data तक सीमित रहें, personal profiles से बचें, और scale पर काम कर रहे हों तो legal counsel लें।

Facebook Graph API से अभी कौन-सा data मिल सकता है?

2026 में Graph API काफी सीमित है। उचित permissions जैसे Page Public Metadata Access के साथ आप limited page-level data — जैसे id, name, about, fan_count, emails, phone — तक पहुँच सकते हैं। अधिकांश public post data, group data (Groups API is deprecated), और user-level data अब API के ज़रिए उपलब्ध नहीं हैं।

Facebook scraper GitHub repos कितनी बार टूटते हैं?

बहुत बार। Facebook लगातार अपना DOM structure, anti-bot measures और internal APIs बदलता रहता है — कोई published cadence नहीं है, लेकिन community reports के अनुसार active scrapers हर कुछ हफ्तों में टूट जाते हैं। moda20 fork की mbasic disappearance वाली issue queue हाल का उदाहरण है। अगर आप GitHub repo पर निर्भर हैं, तो नियमित maintenance और output validation के लिए budget रखें।

और जानें

Ke
Ke
Thunderbit में CTO | वरिष्ठ डेटा वैज्ञानिक और एमएल विशेषज्ञ मशीन लर्निंग और डेटा साइंस में लगभग एक दशक के अनुभव के साथ, के शेन कोलंबिया विश्वविद्यालय के पूर्व छात्र हैं और Walmart Labs में पूर्व वरिष्ठ डेटा वैज्ञानिक रह चुके हैं। Python, R, Java और सांख्यिकी में उनकी गहरी, सहकर्मी-मान्य विशेषज्ञता है, और वे जटिल AI एल्गोरिद्म को सिद्धांत से उत्पादन-स्तरीय आर्किटेक्चर तक ले जाने पर व्यावहारिक, आजमाई हुई अंतर्दृष्टियाँ साझा करते हैं।
विषय सूची

बस पूछकर एक वेबपेज स्क्रैप करें

जो चाहिए, उसे आसान अंग्रेज़ी में कहें। या उससे भी बेहतर, कुछ न कहें।

Thunderbit आज़माएँ मुफ़्त है
AI का उपयोग करके डेटा निकालें
डेटा को आसानी से Google Sheets, Airtable, या Notion में ट्रांसफ़र करें
Chrome Store Rating
PRODUCT HUNT#1 Product of the Week