Getting Started¶
Welcome to Xeepy! This guide will take you from zero to automating X/Twitter in under 5 minutes.
What You'll Learn¶
-
Installation
Install Xeepy and its dependencies with a single command
-
Quick Start
Run your first scraping script in under 2 minutes
-
Authentication
Learn how to authenticate without API keys
-
Configuration
Customize Xeepy for your use case
-
First Script
Build a complete automation workflow
The 60-Second Version¶
# Install Xeepy
pip install xeepy
# Install browser
playwright install chromium
# Run your first scrape
xeepy scrape replies https://x.com/elonmusk/status/123456789
That's it! You're now scraping X/Twitter without paying for API access.
Prerequisites¶
| Requirement | Version | Why |
|---|---|---|
| Python | 3.10+ | Modern async/await support |
| Playwright | Latest | Browser automation engine |
| Chromium | Auto-installed | Browser for scraping |
No API Keys Required
Unlike Tweepy or the official Twitter API, Xeepy uses browser automation. This means:
- ✅ No $100/month API fees
- ✅ No rate limit anxiety
- ✅ No approval process
- ✅ Access to all features
Learning Path¶
graph LR
A[Install] --> B[Authenticate]
B --> C[First Scrape]
C --> D[Export Data]
D --> E[Advanced]
style A fill:#1da1f2
style B fill:#1da1f2
style C fill:#1da1f2
style D fill:#1da1f2
style E fill:#1da1f2 Recommended Reading Order¶
- Installation - Get Xeepy running (2 min)
- Authentication - Set up your session (3 min)
- Quick Start - Run example scripts (5 min)
- First Script - Build something useful (10 min)
- Configuration - Customize behavior (optional)
Choose Your Path¶
Perfect! Jump straight to the Scraping Guide.
Check out our Growth Automation Cookbook.
Head to the Analytics Guide.
Explore AI Features.
Need Help?¶
- FAQ - Common questions answered
- GitHub Issues - Bug reports
- :material-discord: Discord - Community support
- Email - Direct support
Ready? Let's install Xeepy →