Metadata-Version: 2.4
Name: rollinggo-flight
Version: 0.1.2
Summary: RollingGo flight search CLI package for uvx.
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.8.0
Requires-Dist: rich>=13.7.0
Requires-Dist: typer>=0.12.3
Provides-Extra: dev
Requires-Dist: pytest>=8.3.2; extra == 'dev'
Description-Content-Type: text/markdown

# RollingGo Flight CLI

RollingGo flight search CLI for uvx.

## Install

```bash
uvx rollinggo-flight search-airports --keyword Hangzhou
```

## Commands

### search-airports

Search airports by keyword.

```bash
rollinggo-flight search-airports --api-key <key> --keyword "Hangzhou"
```

### search-flights

Search flights with structured filters.

```bash
rollinggo-flight search-flights --api-key <key> \
  --from-city HGH --to-city CTU \
  --from-date 2026-05-01 --trip-type ONE_WAY \
  --adult-number 1 --child-number 0 --cabin-grade ECONOMY
```
