Metadata-Version: 2.4
Name: cine-tmux
Version: 2.1.0
Summary: Movie downloader — routes through relay server to bypass ISP blocks
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28
Requires-Dist: loguru>=0.6
Requires-Dist: rich>=13.0
Requires-Dist: tqdm>=4.64
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# cine

Movie downloader for Termux. Routes all requests through a relay server so ISP blocks don't affect you.

## Install

```bash
pip install requests loguru rich tqdm
pip install git+https://github.com/YOUR_GITHUB/cine-pkg.git
```

Or clone and install locally:

```bash
git clone <repo>
cd cine-pkg
pip install .
```

## Usage

```bash
cine "the amazing spider man" --quality 720p
cine "the amazing spider man 2" --quality 1080p
cine "inception" --quality best
cine "breaking bad" --type tv
```

## Quality options

- `best` — highest available
- `1080p`
- `720p` (default)
- `480p` / `360p`

## If a server fails

```bash
cine "movie name" --server 1
cine "movie name" --server 2
```

## Custom relay server

```bash
export CINE_RELAY="https://your-relay.replit.dev"
cine "movie name"
```
