Metadata-Version: 2.4
Name: pylib-fetcher
Version: 0.1.0
Summary: Async HTTP client with caching and metrics. Network utilities for AI agents. Perfect for AI agents and LLM applications.
Author: pylib-fetcher
License: MIT
Project-URL: Homepage, https://github.com/upendra-manike/PyLib
Project-URL: Repository, https://github.com/upendra-manike/PyLib
Project-URL: Documentation, https://github.com/upendra-manike/PyLib
Project-URL: Issues, https://github.com/upendra-manike/PyLib/issues
Keywords: ai,async,data-processing,data-science,http,machine-learning,ml,networking,nlp,utilities
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pyfetcher

Async HTTP client

## Installation

```bash
pip install pyfetcher
```

## 💡 Usage Examples

### Basic Operations

```python
from pylib_fetcher import fetch_async

# Async fetch
import asyncio

async def get_data():
    result = await fetch_async("https://api.example.com/data")
    return result

data = asyncio.run(get_data())
```

### AI/ML Use Cases

```python
from pylib_fetcher import fetch_async

# Fetch multiple AI API responses concurrently
results = await asyncio.gather(
    fetch_async(api_url1),
    fetch_async(api_url2),
    fetch_async(api_url3)
)
```

## 📚 API Reference

See package documentation for complete API reference.


## 🤖 AI Agent Friendly

This package is optimized for AI agents and code generation tools:
- **Clear function names** and signatures
- **Comprehensive docstrings** with examples
- **Type hints** for better IDE support
- **Common use cases** documented
- **Zero dependencies** for reliability

## License

MIT
