Metadata-Version: 2.4
Name: shiny-fishstick-sdk
Version: 1.0.0
Summary: Compiled Shiny Fishstick Browser Navigation SDK client
Project-URL: Homepage, https://github.com/Hootsworth/shiny-fishstick
Requires-Python: >=3.9
Requires-Dist: playwright>=1.30.0
Requires-Dist: requests>=2.28.0
Description-Content-Type: text/markdown

# Shiny Fishstick Python SDK

This is the auto-compiled Playwright/API client SDK for target browser navigation, generated dynamically by Shiny Fishstick.

## Installation

```bash
pip install shiny-fishstick-sdk
```

## Quick Start

```python
from shiny_fishstick_sdk import ShinyFishstickSiteSDK

# Initialize SDK client
sdk = ShinyFishstickSiteSDK("http://localhost:8001")
sdk.start(headless=True)

try:
    # Run FSM operations
    sdk.login("admin@example.com", "password123")
    sdk.search_products("shoes")
    sdk.add_to_cart("product-42")
    sdk.checkout()
finally:
    sdk.close()
```
