Metadata-Version: 2.4
Name: javdb
Version: 0.1.3
Summary: Command-line scraper for javdatabase.com. Search movies, extract metadata, and download preview images or NFO files for media centers.
Author-email: Phoenixthrush UwU <contact@phoenixthrush.com>
Maintainer-email: Phoenixthrush UwU <contact@phoenixthrush.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/phoenixthrush/javdb-python
Project-URL: Documentation, https://github.com/phoenixthrush/javdb-python/blob/main/README.md
Project-URL: Repository, https://github.com/phoenixthrush/javdb-python.git
Project-URL: Bug Tracker, https://github.com/phoenixthrush/javdb-python/issues
Project-URL: Changelog, https://github.com/phoenixthrush/javdb-python/commits
Project-URL: Source Code, https://github.com/phoenixthrush/javdb-python
Project-URL: Download, https://github.com/phoenixthrush/javdb-python/archive/refs/heads/main.zip
Project-URL: Funding, https://github.com/sponsors/phoenixthrush
Keywords: javdatabase,movies,metadata,preview,images
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: niquests
Dynamic: license-file

# javdb-python

Search [JAVDatabase](https://www.javdatabase.com/) and export movie metadata as
Kodi-compatible NFO or JSON. Posters and preview images can also be downloaded.

## Install

```bash
pip install javdb
```

## Usage

```bash
# Interactive search
javdb

# Search by movie ID and save an NFO
javdb -q SONE-763 -o SONE-763.nfo

# Save JSON instead
javdb -q SONE-763 --json -o metadata.json

# Skip search and download artwork directly
javdb -l https://www.javdatabase.com/movies/sone-763/ -d
```

## Options

- `-q, --query` — movie ID or search text
- `-l, --link` — direct movie page URL
- `-o, --output` — output file path
- `-d, --download` — download the poster and previews
- `--json` — output JSON instead of NFO

NFO output includes the title, IDs, release date, runtime, studio, director,
series, genres, actresses, plot, and artwork references when available.

Run `javdb --help` for the complete command help.

## License

MIT
