Metadata-Version: 2.2
Name: XRP_CONVERTER
Version: 0.2.0
Summary: A cool XRP conversion library with extra tools.
Author: kakz
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: tqdm
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Requires-Dist: flask
Requires-Dist: beautifulsoup4
Requires-Dist: pytest
Requires-Dist: pydantic
Requires-Dist: asyncio
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# XRP Converter Package Documentation

The **XRP Converter** package is a Python tool designed to facilitate the conversion of XRP (Ripple) to other currencies or perform related operations. This guide provides detailed instructions on installation and usage via both the command line and Python scripts.

---

## Table of Contents
1. [Installation](#installation)
2. [Usage](#usage)
   - [Command Line Interface](#command-line-interface)
   - [Python Script Integration](#python-script-integration)
3. [Examples](#examples)
4. [Support](#support)

---

## Installation

### Prerequisites
- Python 3.6 or later
- `pip` package manager

### Steps
**Install the Package**  
Run this command in your terminal/command prompt:

```bash
pip install XRP-CONVERTER
```

## Verify Installation

Confirm the installation succeeded with:

```bash
pip show XRP-CONVERTER
```

This displays package details (version, dependencies, etc.).

---

## Usage

### Command Line Interface (CLI)
Run the tool:

```bash
xrp_convert
```

---

### Python Script Integration

**Import the Module**  
Add this to your Python script:

```python
from XRP_CONVERTER import Xrp_convert
```

**Initialize and Run**  
Create an instance and trigger the conversion process:

```python
converter = Xrp_convert()
converter.run()  # Follow the prompts during execution
