Metadata-Version: 2.1
Name: tryon-tray
Version: 0.1.2
Summary: A package for virtual try-on services integration
Home-page: https://github.com/yourusername/tryon-tray
Author: Your Name
Author-email: your.email@example.com
Classifier: Development Status :: 3 - Alpha
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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: python-dotenv
Requires-Dist: tqdm
Requires-Dist: pyjwt
Requires-Dist: replicate

# Tryon-Tray

A Python package for virtual try-on services integration, supporting multiple VTON (Virtual Try-On)providers.

## Version

Current version: 0.1.2

## Installation

```sh
pip install tryon-tray
```

## Usage

```python
# Load environment variables
env_path = Path(file).parent / ".env"
load_dotent(env_path)

# Setup paths
input_dir = "path/to/inputs"
output_dir = "path/to/outputs"

# Input images
model_image = str(input_dir / "person.jpg")
garment_image = str(input_dir / "garment.jpeg")

# Generate virtual try-on
result = VTON(
    model_image=model_image,
    garment_image=garment_image,
    model_name="fashnai", #  or "klingai" or "replicate"
    auto_download=True,
    download_dir=str(output_dir),
    # Polling configuration
    polling_interval=1,
    show_polling_progress=True,
    # Optional parameters
    category="tops",
    mode="quality",
    adjust_hands=True,
    restore_background=True
)

# Access results
print("\nGenerated image URLs:")
for url in result["urls"]:
    print(f"- {url}")


print("\nDownloaded images:")
for path in result["local_paths"]:
    print(f"- {path}")
```

## Features

- Multiple VTON service providers support  
- Automatic image downloading   
- Progress tracking 

## Configuration

Create a .env file with your API keys:

```sh
FASHNAI_API_KEY=your_fashnai_key
KLINGAI_API_KEY=your_klingai_key
REPLICATE_API_TOKEN=your_replicate_token
```

## Sample Response


```python
{
  "urls": ["https:/..."],  // Generated image URLs
  "local_paths": ["path/to/downloaded/image.jpg"],  // Downloaded file paths
  "timing": {
    "time_taken": datetime.timedelta  // Total processing time
  }
}
```

## Parameters

- `model_image`: Path to the person/model image  
- `garment_image`: Path to the garment image  
- `model_name`: Service provider ("fashnai", "klingai", "replicate") 
- `auto_download`: Automatically download generated images  
- `download_dir`: Directory for downloaded images  
- `polling_interval`: Time between status checks (seconds)`
- `show_polling_progress`: Show progressbar during generation   
- `category`: Garment category ("tops", "dresses", etc.)  
- `mode`: Generation mode ("quality" or "speed")  
- `adjust_hands`: Adjust hand positions in output  
- `restore_background`: Preserve original image background 


## Response Format

- **URLs**! for generated images  
- **Local paths**! to downloaded images  
- **Timing!* information (time taken for processing)



## License

MIT License

## Contributing

Contributions are wellcome! Please feel free to submit a Pull Request.
