Metadata-Version: 2.4
Name: alavida-x-scraper
Version: 0.1.0
Summary: Alavida X Scraper SDK (Python).
License-Expression: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: typing-extensions>=4.7.0

# Alavida X Scraper SDK (Python)

Install:

```bash
pip install alavida-x-scraper
```

Usage:

```python
from alavida_x_scraper import XScraperClient

client = XScraperClient(
    base_url="https://your-host.com/api",
    token="YOUR_CLERK_API_KEY",
)

result = client.scraping.scrape_tweets_from_a_twitter_user(
    user_name="elonmusk",
    max_tweets=5,
    query_type="Latest",
    replies_filter="exclude",
)
```
