Metadata-Version: 2.4
Name: ytapis
Version: 1.0.0
Summary: Search YouTube and get video metadata — no API key required
License: MIT
Project-URL: Homepage, https://github.com/ytapis/ytapis
Project-URL: Repository, https://github.com/ytapis/ytapis
Keywords: youtube,search,scraper,metadata
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ytapi — Python

Search YouTube and get video metadata. No API key required.

## Install

```bash
pip install ytapi
```

## Usage

```python
from ytapi import search

results = search("cats", limit=5)
for v in results:
    print(v["title"], "-", v["author"])
```

### CLI

```bash
ytapi search cats --limit 5
```
