Metadata-Version: 2.1
Name: TaskoraApi
Version: 1.0.0
Summary: Python client for interacting with the QuizAPI, InstagramApi , chatBot and reChaptchaV3 Solver using aiohttp, httpx, or requests.
Home-page: https://github.com/yourusername/TaskoraApi
Author: Sam
Author-email: your_email@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: aiohttp >=3.8.0
Requires-Dist: httpx >=0.24.0
Requires-Dist: requests >=2.25.0



---

```markdown
# taskoraapi Package

A modular Python library offering clients for chatbot interactions, Instagram APIs, quiz services, and reCAPTCHA v3 solving.

## 📦 Features

- **chatBot**: A customizable chatbot client for interacting with various AI services.
- **InstagramApi**: Asynchronous and synchronous clients to access Instagram-related APIs.
- **QuizApi**: Clients to fetch quizzes using different HTTP libraries.
- **reCaptchaV3Solver**: A client to interact with reCAPTCHA v3 solving services.

## 🛠️ Installation

```bash
pip install chatBot
```

> ⚠️ **Note**: Replace `chatBot` with the actual name on PyPI once published.

## 🧰 Modules & Usage

### 🔹 chatBot

```python
from chatBot.client import ChatBotClient

bot = ChatBotClient(api_key="your-key")
response = bot.ask("Hello!")
print(response)
```

### 🔹 InstagramApi

```python
from InstagramApi.aiohttp_client import InstagramAioClient

client = InstagramAioClient(api_key="your-key")
await client.fetch_user("example_user")
```

### 🔹 QuizApi

```python
from QuizApi.httpx_client import QuizClient

client = QuizClient(api_key="your-key")
questions = client.get_questions()
print(questions)
```

### 🔹 reCaptchaV3Solver

```python
from reCaptchaV3Solver.client import ReCaptchaSolver

solver = ReCaptchaSolver(api_key="your-key")
token = solver.solve(site_key="...", url="https://example.com")
print(token)
```

## 📁 Examples

Explore the `examples/` directory for complete demos:

- [`examples/chatBot/`](examples/chatBot/)
- [`examples/InstagramApi/`](examples/InstagramApi/)
- [`examples/QuizApi/`](examples/QuizApi/)
- [`examples/reCaptchaV3Solver/`](examples/reCaptchaV3Solver/)

Each folder includes sample scripts and explanations.


## 📄 License

MIT License

## 👨‍💻 Author

Your Name – [yourwebsite.com](https://yourwebsite.com)  
GitHub: [@yourgithub](https://github.com/yourgithub)
```

---


