Metadata-Version: 2.4
Name: chess-to-sqlite
Version: 0.1.0
Summary: Import PGN chess games into a SQLite database
Author: Jan Schill
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/janschill/chess-to-sqlite
Project-URL: Issues, https://github.com/janschill/chess-to-sqlite/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Games/Entertainment :: Board Games
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: sqlite-utils
Requires-Dist: python-chess
Dynamic: license-file

# chess-to-sqlite

Import PGN chess games into a SQLite database.

Works with exports from Lichess, Chess.com, or any standard PGN source.

## Installation

    pip install chess-to-sqlite

## Usage

    chess-to-sqlite games.pgn chess.db

Add player perspective columns:

    chess-to-sqlite games.pgn chess.db --player janschill

Options:

    --table TEXT     Target table name (default: games)
    --player TEXT    Your username — adds my_color, my_result, etc.
    --silent         Suppress progress output
    --version        Show version
    --help           Show help
