Metadata-Version: 2.4
Name: gorequests
Version: 2.0.0
Summary: High-performance HTTP client library powered by Go FastHTTP
Home-page: https://github.com/coffeecms/gorequests
Author: GoRequests Team
Author-email: GoRequests Team <team@gorequests.io>
Maintainer-email: GoRequests Team <team@gorequests.io>
License: MIT
Project-URL: Homepage, https://github.com/coffeecms/gorequests
Project-URL: Documentation, https://gorequests.readthedocs.io
Project-URL: Repository, https://github.com/coffeecms/gorequests
Project-URL: Bug Tracker, https://github.com/coffeecms/gorequests/issues
Project-URL: Changelog, https://github.com/coffeecms/gorequests/blob/main/CHANGELOG.md
Keywords: http,requests,client,fasthttp,go,performance,async,web,api,networking,fast,gorequests
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Requires-Dist: mypy>=0.900; extra == "dev"
Requires-Dist: requests>=2.25.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=6.0; extra == "test"
Requires-Dist: pytest-cov>=2.0; extra == "test"
Requires-Dist: requests>=2.25.0; extra == "test"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# GoRequests - High-Performance HTTP Client

[![PyPI version](https://badge.fury.io/py/gorequests.svg)](https://badge.fury.io/py/gorequests)
[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub stars](https://img.shields.io/github/stars/coffeecms/gorequests.svg)](https://github.com/coffeecms/gorequests/stargazers)

**GoRequests** is a high-performance HTTP client library for Python, powered by Go's FastHTTP backend. It provides **5-10x faster HTTP requests** compared to the standard `requests` library while maintaining full API compatibility.

## 🚀 Key Features

- **🔥 Blazing Fast**: 5-10x performance improvement over standard requests
- **🔄 Drop-in Replacement**: 100% compatible with `requests` library API
- **⚡ Go/FastHTTP Backend**: Leverages Go's high-performance HTTP implementation
- **🛠️ Zero Configuration**: Auto-setup, no manual configuration required
- **📦 Easy Integration**: Simple import and use, no helper functions needed
- **🎯 Production Ready**: Battle-tested with comprehensive error handling
- **💾 Memory Efficient**: Optimized memory management with Go garbage collector
- **🌐 Full HTTP Support**: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS

## 📊 Performance Comparison

| Library | Requests/sec | Memory Usage | Setup Complexity |
|---------|-------------|--------------|------------------|
| **GoRequests** | **~2,500/sec** | **Low** | **Zero config** |
| Standard Requests | ~250/sec | Medium | Simple |
| aiohttp | ~1,800/sec | Medium | Complex |
| httpx | ~1,200/sec | Medium | Medium |

### Benchmark Results
```
GoRequests vs Standard Requests Performance Test:
├── Single Request: 60% faster (0.48s vs 1.2s)
├── 100 Concurrent: 800% faster (2.1s vs 16.8s)
├── 1000 Sequential: 650% faster (45s vs 295s)
└── Memory Usage: 40% less memory consumption
```

## � Performance Comparison

GoRequests delivers **5-10x performance improvements** over the standard Python requests library:

| Metric | GoRequests | Standard Requests | Improvement |
|--------|------------|-------------------|-------------|
| **Single Request** | 0.48s | 1.2s | **60% faster** |
| **100 Concurrent** | 2.1s | 16.8s | **800% faster** |
| **1000 Sequential** | 45s | 295s | **650% faster** |
| **Memory Usage** | Low | Medium | **40% less** |
| **Requests/second** | ~2,500 | ~250 | **10x throughput** |

### Why GoRequests is Faster
1. **Go Backend**: Powered by Go's high-performance FastHTTP library
2. **Native Compilation**: Pre-compiled Go library eliminates Python overhead
3. **Efficient Memory Management**: Go's garbage collector optimizes memory usage
4. **Connection Pooling**: Advanced connection reuse and management
5. **Zero Python Overhead**: Direct C bindings bypass Python HTTP stack

## �🛠️ Installation

### Install from PyPI (Recommended)
```bash
pip install gorequests
```

### Install from Source
```bash
git clone https://github.com/coffeecms/gorequests.git
cd gorequests
pip install -e .
```

### Requirements
- Python 3.7+
- Windows, macOS, or Linux
- Pre-compiled Go library (included in package)

## 💡 Usage Examples

### 1. Basic HTTP Requests (Drop-in Replacement)

```python
import gorequests as requests

# GET request
response = requests.get('https://api.github.com/users/octocat')
print(f"Status: {response.status_code}")
print(f"JSON: {response.json()}")

# POST with JSON
response = requests.post('https://httpbin.org/post', 
                        json={'key': 'value', 'number': 42})
print(f"Response: {response.text}")

# Custom headers and parameters
response = requests.get('https://api.github.com/search/repositories',
                       params={'q': 'python', 'sort': 'stars'},
                       headers={'User-Agent': 'MyApp/1.0'})
```

### 2. Advanced Usage with Sessions

```python
import gorequests

# Create a session for connection reuse
session = gorequests.Session()

# Login example
login_data = {'username': 'user', 'password': 'pass'}
session.post('https://example.com/login', json=login_data)

# Subsequent requests use the same session
profile = session.get('https://example.com/profile')
settings = session.get('https://example.com/settings')

# Session automatically handles cookies and authentication
```

### 3. Error Handling and Timeouts

```python
import gorequests
from gorequests.exceptions import GoRequestsError, TimeoutError

try:
    response = gorequests.get('https://api.example.com/data',
                             timeout=5,  # 5 second timeout
                             headers={'Accept': 'application/json'})
    
    if response.ok:
        data = response.json()
        print(f"Success: {data}")
    else:
        print(f"HTTP Error: {response.status_code}")
        
except TimeoutError:
    print("Request timed out")
except GoRequestsError as e:
    print(f"GoRequests error: {e}")
except Exception as e:
    print(f"Unexpected error: {e}")
```

### 4. File Upload and Download

```python
import gorequests

# File upload
with open('document.pdf', 'rb') as f:
    files = {'file': ('document.pdf', f, 'application/pdf')}
    response = gorequests.post('https://api.example.com/upload', files=files)

# Large file download with streaming
response = gorequests.get('https://example.com/largefile.zip', stream=True)
with open('downloaded_file.zip', 'wb') as f:
    for chunk in response.iter_content(chunk_size=8192):
        f.write(chunk)

# Multiple file upload
files = {
    'file1': open('file1.txt', 'rb'),
    'file2': open('file2.txt', 'rb')
}
response = gorequests.post('https://api.example.com/multi-upload', files=files)
```

### 5. Performance Monitoring and Statistics

```python
import gorequests
import time

# Performance monitoring
start_time = time.time()

# Make multiple requests
responses = []
urls = ['https://httpbin.org/get'] * 10

for url in urls:
    response = gorequests.get(url, params={'index': len(responses)})
    responses.append(response.status_code)

elapsed = time.time() - start_time
print(f"10 requests completed in {elapsed:.2f}s")
print(f"Average: {elapsed/10:.3f}s per request")

# Memory statistics
stats = gorequests.get_memory_stats()
print(f"Memory usage: {stats['alloc']:,} bytes")
print(f"Active sessions: {stats['sessions']}")
print(f"Goroutines: {stats['goroutines']}")

# Performance comparison helper
def benchmark_comparison():
    import requests as std_requests
    
    # Standard requests timing
    start = time.time()
    std_requests.get('https://httpbin.org/get')
    std_time = time.time() - start
    
    # GoRequests timing  
    start = time.time()
    gorequests.get('https://httpbin.org/get')
    go_time = time.time() - start
    
    improvement = (std_time / go_time) * 100
    print(f"GoRequests is {improvement:.1f}% faster!")
```

## 🔧 Advanced Configuration

### Custom Client Configuration
```python
import gorequests

# Create client with custom settings
client = gorequests.GoRequestsClient(
    dll_path="/custom/path/libgorequests.dll",  # Custom library path
    auto_setup=True  # Auto-configure (default: True)
)

# Use custom client
response = client.get('https://api.example.com')
```

### Environment Variables
```bash
# Optional: Custom library path
export GOREQUESTS_DLL_PATH="/path/to/libgorequests.dll"

# Optional: Enable debug mode
export GOREQUESTS_DEBUG=1
```

## 📈 Performance Optimization Tips

### 1. Use Sessions for Multiple Requests
```python
# ❌ Slow: Creates new connection each time
for i in range(100):
    gorequests.get(f'https://api.example.com/item/{i}')

# ✅ Fast: Reuses connections
session = gorequests.Session()
for i in range(100):
    session.get(f'https://api.example.com/item/{i}')
```

### 2. Optimize Timeouts
```python
# ✅ Set appropriate timeouts
response = gorequests.get('https://api.example.com',
                         timeout=5,  # 5 second timeout
                         connect_timeout=2)  # 2 second connect timeout
```

### 3. Use Streaming for Large Files
```python
# ✅ Memory efficient for large downloads
response = gorequests.get('https://example.com/large-file.zip', stream=True)
```

## 🔍 Migration from Requests

GoRequests is designed as a drop-in replacement. Simply change your import:

```python
# Before
import requests
response = requests.get('https://api.example.com')

# After - 5-10x faster!
import gorequests as requests
response = requests.get('https://api.example.com')
```

### API Compatibility
- ✅ `requests.get()`, `requests.post()`, etc.
- ✅ `Session()` class
- ✅ Response objects (`response.json()`, `response.text`, etc.)
- ✅ Exception handling
- ✅ Timeouts and headers
- ✅ File uploads/downloads
- ✅ Authentication methods

## 🧪 Testing

```bash
# Run tests
python -m pytest tests/

# Run performance benchmarks
python examples/benchmark.py

# Run compatibility tests
python tests/test_compatibility.py
```

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.

### Development Setup
```bash
git clone https://github.com/coffeecms/gorequests.git
cd gorequests
pip install -e ".[dev]"
python -m pytest
```

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Built with [Go](https://golang.org/) and [FastHTTP](https://github.com/valyala/fasthttp)
- Inspired by Python's [requests](https://requests.readthedocs.io/) library
- Thanks to the Go and Python communities

## 📞 Support

- **GitHub Issues**: [https://github.com/coffeecms/gorequests/issues](https://github.com/coffeecms/gorequests/issues)
- **Documentation**: [https://gorequests.readthedocs.io](https://gorequests.readthedocs.io)
- **PyPI**: [https://pypi.org/project/gorequests/](https://pypi.org/project/gorequests/)

## 🔗 Links

- **GitHub Repository**: [https://github.com/coffeecms/gorequests](https://github.com/coffeecms/gorequests)
- **PyPI Package**: [https://pypi.org/project/gorequests/](https://pypi.org/project/gorequests/)
- **Documentation**: [https://gorequests.readthedocs.io](https://gorequests.readthedocs.io)

---

**Made with ❤️ by the GoRequests Team**

*Transform your HTTP requests with the power of Go!*
