Metadata-Version: 2.4
Name: interpal
Version: 1.1.1
Summary: A comprehensive Python library for the Interpals API with sync/async support
Home-page: https://github.com/yourusername/interpal-python-lib
Author: Interpals Python Library Contributors
Author-email: 
License: MIT
Project-URL: Homepage, https://github.com/yourusername/interpal-python-lib
Project-URL: Documentation, https://github.com/yourusername/interpal-python-lib/wiki
Project-URL: Repository, https://github.com/yourusername/interpal-python-lib
Project-URL: Bug Tracker, https://github.com/yourusername/interpal-python-lib/issues
Keywords: interpals,api,client,async,websocket,social
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: websockets>=10.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.20.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Requires-Dist: mypy>=0.990; extra == "dev"
Requires-Dist: isort>=5.10.0; extra == "dev"
Provides-Extra: validation
Requires-Dist: pydantic>=2.0.0; extra == "validation"
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Interpals Python Library

A comprehensive Python library for the Interpals API, providing both synchronous and asynchronous interfaces with WebSocket support for real-time events. Designed similar to discord.py for ease of use and powerful functionality.

## Features

✨ **Dual Interface**: Both sync and async client support  
🔐 **Flexible Authentication**: Auto-login or manual cookie import  
🌐 **WebSocket Support**: Real-time events and notifications  
📝 **Comprehensive Models**: Fully typed data models for all API responses  
🎯 **Event System**: Decorator-based event handlers (@client.event)  
🔄 **Auto-retry**: Built-in retry logic with exponential backoff  
⚡ **Rate Limiting**: Automatic rate limit handling  
📦 **Complete API Coverage**: 70+ endpoints across all categories

## Installation

```bash
pip install interpal
```

Or install from source:

```bash
git clone https://github.com/yourusername/interpal.git
cd interpal
pip install -e .
```

### Requirements

- Python 3.7+
- requests >= 2.28.0
- aiohttp >= 3.8.0
- websockets >= 10.0

## Quick Start

### Synchronous Usage

```python
from interpal import InterpalClient

# Auto-login with credentials
client = InterpalClient(
    username="your_username",
    password="your_password",
    auto_login=True
)

# Get your profile
profile = client.get_self()
print(f"Logged in as: {profile.name}")

# Get message threads
threads = client.get_threads()
print(f"You have {len(threads)} message threads")

# Send a message
client.send_message(thread_id="123456", content="Hello from Python!")

# Search for users
users = client.search_users(country="Japan", age_min=20, age_max=30)
for user in users:
    print(f"{user.name}, {user.age}, {user.city}")

# Close connections
client.close()
```

### Asynchronous Usage

```python
import asyncio
from interpal import AsyncInterpalClient

async def main():
    client = AsyncInterpalClient(
        username="your_username",
        password="your_password"
    )
    client.login()
    
    # Fetch multiple things concurrently
    profile, threads, notifications = await asyncio.gather(
        client.get_self(),
        client.get_threads(),
        client.get_notifications()
    )
    
    print(f"Welcome {profile.name}!")
    print(f"Threads: {len(threads)}, Notifications: {len(notifications)}")
    
    await client.close()

asyncio.run(main())
```

### Real-time Events (WebSocket)

```python
import asyncio
from interpal import AsyncInterpalClient

client = AsyncInterpalClient(session_cookie="your_session_cookie")

@client.event('on_ready')
async def on_ready(data=None):
    print("Bot is ready!")
    profile = await client.get_self()
    print(f"Logged in as: {profile.name}")

@client.event('on_message')
async def on_message(data):
    sender = data.get('sender', {}).get('name', 'Unknown')
    content = data.get('content', '')
    print(f"New message from {sender}: {content}")
    
    # Auto-reply
    if 'hello' in content.lower():
        thread_id = data.get('thread_id')
        await client.send_message(thread_id, "Hi there!")

@client.event('on_notification')
async def on_notification(data):
    print(f"New notification: {data.get('message')}")

# Start listening (runs indefinitely)
asyncio.run(client.start())
```

## Authentication

### Method 1: Persistent Sessions (Recommended)

Automatically save and reuse sessions for 24 hours - no need to login every time!

```python
client = InterpalClient(
    username="user",
    password="pass",
    auto_login=True,
    persist_session=True  # Session saved and reused for 24 hours
)

# First run: Logs in and saves session
# Next runs: Automatically uses saved session until it expires
# After 24 hours: Automatically re-logins and saves new session
```

Check session status:

```python
session_info = client.get_session_info()
print(f"Time remaining: {session_info['time_remaining']}")
print(f"Expires at: {session_info['expires_at']}")
```

Custom session configuration:

```python
client = InterpalClient(
    username="user",
    password="pass",
    auto_login=True,
    persist_session=True,
    session_file="my_session.json",  # Custom file location
    session_expiration_hours=48  # Expire after 48 hours
)
```

### Method 2: Login with Credentials

```python
client = InterpalClient(username="user", password="pass", auto_login=True)
```

### Method 3: Import Session Cookie

```python
client = InterpalClient(session_cookie="interpals_sessid=abc123...")
client.validate_session()
```

### Method 4: Export/Import Session

```python
# Export session for later use
session = client.export_session()
print(session['session_cookie'])

# Import it later
client = InterpalClient(
    session_cookie=session['session_cookie'],
    auth_token=session['auth_token']
)
```

## API Coverage

### User Management
- `get_self()` - Get current user profile
- `update_self(**kwargs)` - Update profile
- `get_user(user_id)` - Get user by ID
- `get_counters()` - Get user statistics
- `get_settings()` - Get user settings
- `update_settings(**kwargs)` - Update settings

### Messaging
- `get_threads()` - Get message threads
- `get_thread_messages(thread_id)` - Get messages in thread
- `send_message(thread_id, content)` - Send message
- `mark_thread_viewed(thread_id)` - Mark as read
- `set_typing(thread_id)` - Send typing indicator

### Search & Discovery
- `search_users(**filters)` - Search users with filters
- `search_by_location(lat, lon, radius)` - Location-based search
- `get_feed()` - Get main content feed
- `get_nearby_users()` - Get nearby users
- `get_suggestions()` - Get suggested users

### Media & Photos
- `upload_photo(file_path, caption)` - Upload photo
- `get_photo(photo_id)` - Get photo details
- `get_user_photos(user_id)` - Get user's photos
- `get_album(album_id)` - Get album
- `create_album(name, description)` - Create album

### Social Features
- `get_friends()` - Get friends list
- `block_user(user_id)` - Block user
- `unblock_user(user_id)` - Unblock user
- `bookmark_user(user_id, note)` - Bookmark user
- `like_content(content_id, type)` - Like content

### Real-time & Notifications
- `get_notifications()` - Get notifications
- `mark_notification_read(id)` - Mark as read
- `register_push_token(token)` - Register for push
- `get_views()` - Get profile views

## Data Models

All API responses are automatically parsed into comprehensive data models:

```python
# User Profile
profile = client.get_self()
print(profile.name)        # str
print(profile.age)         # int
print(profile.country)     # str
print(profile.bio)         # str
print(profile.languages)   # List[str]

# Message Thread
thread = client.get_threads()[0]
print(thread.id)                    # str
print(thread.participants)          # List[User]
print(thread.last_message.content)  # str
print(thread.unread_count)          # int

# Notification
notif = client.get_notifications()[0]
print(notif.type)         # str
print(notif.message)      # str
print(notif.actor.name)   # str
print(notif.read)         # bool
```

## Event System

### Available Events

- `on_ready` - Client connected and ready
- `on_message` - New message received
- `on_typing` - User typing indicator
- `on_notification` - New notification
- `on_status_change` - User status change
- `on_user_online` - User comes online
- `on_user_offline` - User goes offline
- `on_disconnect` - WebSocket disconnected

### Registering Events

```python
# Method 1: Using decorator
@client.event('on_message')
async def handle_message(data):
    print(f"Message: {data}")

# Method 2: Programmatically
async def my_handler(data):
    print(f"Notification: {data}")

client._ws_client.register_event('on_notification', my_handler)
```

## Error Handling

The library provides comprehensive exception handling:

```python
from interpal import (
    InterpalException,
    AuthenticationError,
    APIError,
    RateLimitError,
    WebSocketError,
    ValidationError
)

try:
    client.login()
except AuthenticationError as e:
    print(f"Login failed: {e}")
except APIError as e:
    print(f"API error ({e.status_code}): {e}")
except RateLimitError as e:
    print(f"Rate limited. Retry after {e.retry_after} seconds")
```

## Advanced Usage

### Custom User Agent

```python
client = InterpalClient(
    username="user",
    password="pass",
    user_agent="my-app/2.0.0"
)
```

### Rate Limiting Configuration

```python
from interpal.http import HTTPClient

# Adjust minimum request interval (default: 1 second)
client.http._min_request_interval = 2.0  # 2 seconds between requests
```

### Retry Configuration

```python
from interpal import InterpalClient
from interpal.http import HTTPClient

client = InterpalClient(...)
client.http.max_retries = 5  # Default: 3
```

### WebSocket Reconnection

```python
# Configure reconnection behavior
client._ws_client._max_reconnect_attempts = 10  # Default: 5
client._ws_client._reconnect_delay = 3  # Default: 2 seconds
```

## Examples

Check the `examples/` directory for complete examples:

- `basic_sync.py` - Basic synchronous usage
- `async_example.py` - Asynchronous operations
- `realtime_bot.py` - Real-time bot with event handlers

## Testing

```bash
# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run tests with coverage
pytest --cov=interpal tests/
```

## Contributing

Contributions are welcome! Please follow these steps:

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Disclaimer

This is an unofficial library and is not affiliated with or endorsed by Interpals. Use at your own risk and in accordance with Interpals' Terms of Service.

## Documentation

For detailed documentation, please refer to the `docs/` folder:

- 📚 [Getting Started Guide](docs/GETTING_STARTED.md) - Detailed setup and first steps
- ⚡ [Quick Start Guide](docs/QUICKSTART.md) - Get up and running quickly
- 📖 [API Reference](docs/API_REFERENCE.md) - Complete API documentation
- 🔐 [Session Persistence Guide](docs/SESSION_PERSISTENCE_GUIDE.md) - Automatic session management
- 🔧 [API Endpoint Corrections](docs/API_ENDPOINT_CORRECTIONS.md) - Verified API endpoints
- 🏗️ [Project Structure](docs/PROJECT_STRUCTURE.md) - Understanding the codebase
- 📝 [Implementation Summary](docs/IMPLEMENTATION_SUMMARY.md) - Technical implementation details
- ✅ [Verification Checklist](docs/VERIFICATION_CHECKLIST.md) - Testing and verification guide

## Support

- 📖 [Documentation](https://github.com/yourusername/interpal-python-lib/wiki)
- 🐛 [Issue Tracker](https://github.com/yourusername/interpal-python-lib/issues)
- 💬 [Discussions](https://github.com/yourusername/interpal-python-lib/discussions)

## Changelog

### Version 1.0.0 (Initial Release)

- ✅ Complete API coverage for 70+ endpoints
- ✅ Synchronous and asynchronous client support
- ✅ WebSocket support for real-time events
- ✅ Comprehensive data models
- ✅ Event system with decorators
- ✅ Authentication management
- ✅ Rate limiting and auto-retry
- ✅ Full documentation and examples

## Acknowledgments

- Inspired by [discord.py](https://github.com/Rapptz/discord.py)
- Built with love for the Interpals community

---

Made with ❤️ by the Interpals Python Library Contributors

