Metadata-Version: 2.4
Name: google-serp-extractor
Version: 1.0.0
Summary: Official Python SDK for Google SERP & Search Intelligence Extractor Pro.
Home-page: https://github.com/meanusarcanus/google-serp-extractor
Author: Meanus Arcanus
Author-email: meanusarcanus@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Requires-Dist: beautifulsoup4>=4.12.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Google SERP & Search Intelligence Extractor (Python SDK)

High-speed, zero rate-limit Python client and library for scraping Google Search Engine Results Pages (SERPs).

## 🚀 Installation
```bash
pip install google-serp-extractor
```

## ⚡ Quick Start
```python
from google_serp_extractor import scrape_google_serp

results = scrape_google_serp("What are the top 5 CRM tools", country_code="us")

print(f"Total Results: {results['total_organic_results']}")
for item in results["organic_results"][:5]:
    print(f"#{item['position']} {item['title']}")
    print(f"  URL: {item['url']}")
```

## 🌐 Cloud API & Apify Actor
* **Apify Store Actor**: [https://apify.com/meanusarcanus/google-serp-ai](https://apify.com/meanusarcanus/google-serp-ai)
* **RapidAPI Hub**: [https://rapidapi.com](https://rapidapi.com)
* **GitHub Repository**: [https://github.com/meanusarcanus/google-serp-extractor](https://github.com/meanusarcanus/google-serp-extractor)
