Skip to main content

It sorts games by tags and add eco, opening and variation.

Project description

PgnHelper

An application that can sort games in pgn file and add eco codes, opening and variation names.

It can sort on event, site, date, round, white, black eco, ecot and plycount tags.

There are 2 types of ECO codes that it adds first the ECO based from the first 4 plies and second the ECOT or ECO by transposition after 24 plies. The same can be said for the opening and variation, there are OpeningT and VariationT.

[Event "Manila"]
[Site "Manila"]
[Date "1974.??.??"]
[Round "10"]
[White "Naranja, Renato"]
[Black "Petrosian, Tigran V"]
[Result "1/2-1/2"]
[BlackElo "2640"]
[ECO "A15"]
[ECOT "D90"]
[Opening "English"]
[OpeningT "Gruenfeld"]
[VariationT "Three knights variation"]
[WhiteElo "2395"]

1. c4 Nf6 2. Nf3 g6 3. d4 Bg7 4. Nc3 d5 5. cxd5 Nxd5 6. Bd2 Nb6 7. Qc2 Nc6
8. Rd1 O-O 9. e3 Bf5 10. Qc1 a5 11. Be2 a4 12. O-O Qc8 13. d5 Nb8 14. e4 Bg4
15. Bh6 c6 16. Bxg7 Kxg7 17. Qe3 N8d7 1/2-1/2

The new ECOT, OpeningT and VariationT are based from the input eco.pgn file. You can get eco.pgn which is based from the eco.pgn from pgn-extract.

Installation

Python Package Index: https://pypi.org/project/pgnhelper/

A. Virtual environment installation (recommended)

  1. Open command prompt or powershell.
    PS C:\Users\ferdi>
  2. cd to C drive or other drive if you want to install in other drive.
    PS C:\Users\ferdi> cd c:\
  3. Check if you have python.
    PS C:\> python --version
  4. Create a folder.
    PS C:\> mkdir mypgnhelper
  5. cd to this folder.
    PS C:\> cd mypgnhelper
  6. Create venv folder for virtual environment.
    PS C:\mypgnhelper> python -m venv venv
  7. Activate the virtual enviromnent.
    PS C:\mypgnhelper> ./venv/scripts/activate
  8. Update pip.
    (venv) PS C:\mypgnhelper> python -m pip install -U pip
  9. Install the pgnhelper.
    (venv) PS C:\mypgnhelper> pip install pgnhelper
  10. Check the installation by checking its version.
    (venv) PS C:\mypgnhelper> pgnhelper -v
    You should see 0.2.0 or other version number.
  11. When you work with pgn file you need to activate the virtual environment as in step 7 if it is not activated yet like when you comeback after computer restart.

B. Global installation

  1. Open command prompt or powershell and run as administrator
    PS C:\Users\ferdi>
  2. Check if you have python.
    PS C:\> python --version
  3. Install the package.
    PS C:\> pip install pgnhelper
  4. Test it.
    PS C:\> pgnhelper -v
    PS C:\> pgnhelper -h

Dependency

pgnhelper is dependent on python chess library. Version 1.9.1 of it is installed when pgnhelper is installed.

Uninstallation

pip uninstall pgnhelper
pip uninstall chess

eco.pgn

This file is needed when adding eco, opening and variation names to the games in pgn file. You can get this from eco folder in this repo or you can use other eco.pgn from other sources.

Features

  1. Sort games by eco tag in descending order from script.
"""
sample.py

pip install pgnhelper
"""

import pgnhelper

a = pgnhelper.PgnHelper(
    'sort',
    inpgnfn='mygames.pgn',
    outpgnfn='out.pgn',
    sort_tag='eco',
    sort_direction='hightolow')
a.start()
  1. Sort games by date tag in ascending order from script.
"""
sample.py
"""

import pgnhelper

a = pgnhelper.PgnHelper(
    'sort',
    inpgnfn='mygames.pgn',
    outpgnfn='out.pgn',
    sort_tag='date',
    sort_direction='lowtohigh')
a.start()
  1. Sort games from command line.
pgnhelper sort --inpgnfn "c:/chess/mygames.pgn" --outpgnfn "out.pgn" --sort-tag eco --sort-direction hightolow
  1. Add eco, opening and variation to games from script.
"""
sample_addeco.py
"""

import pgnhelper

a = pgnhelper.PgnHelper(
    'addeco',
    inpgnfn='mygames.pgn',
    outpgnfn='out.pgn',
    inecopgnfn='eco.pgn')
a.start()
  1. Add ECO, ECOT, Opening, OpeningT, Variation and VariationT to the game from command line.
pgnhelper addeco --inpgnfn mygames.pgn --inecopgnfn eco.pgn --outpgnfn eco_mygames.pgn

Example output where the game started as English and has transposed into QGD.

[Event "FEOBOS, Rank 00003"]
[Site "Trier"]
[Date "2017.01.29"]
[Round "20"]
[White "FEOBOS"]
[Black "FEOBOS"]
[Result "1/2-1/2"]
[BlackElo "3000"]
[ECO "A17"]
[ECOT "D41"]
[Opening "English"]
[OpeningT "QGD"]
[PlyCount "20"]
[Source "Frank Quisinsky"]
[VariationT "Semi-Tarrasch with e3"]
[WhiteElo "3000"]

1. c4 Nf6 2. Nc3 e6 3. Nf3 d5 4. d4 c5 5. cxd5 Nxd5 6. e3 Be7 7. Bc4 cxd4 8.
exd4 Nc6 9. O-O O-O 10. Re1 Qd6 1/2-1/2

Help

pgnhelper --help

usage: pgnhelper [-h] [-v] {sort,addeco} ...

positional arguments:
  {sort,addeco}
    sort         Sort the games from the given pgn file based on the given game tags. e.g.
        pgnhelper sort mygames.pgn --outpgnfn out.pgn --sort-tag opening --sort-direction hightolow
    addeco       Add eco and ecot codes, opening and variation names to the input pgn file.
        The eco, opening etc. are from the given input file eco.pgn. e.g.
        pgnhelper addeco --inpgnfn mygames.pgn --inecopgnfn eco.pgn --outpgnfn out.pgn

options:
  -h, --help     show this help message and exit
  -v, --version  show program's version number and exit

pgnhelper sort --help

usage: pgnhelper.py sort [-h] --inpgnfn INPGNFN --outpgnfn OUTPGNFN [--sort-tag SORT_TAG]
                         [--sort-direction SORT_DIRECTION]

optional arguments:
  -h, --help            show this help message and exit
  --inpgnfn INPGNFN     Write the input pgn filename, required.
  --outpgnfn OUTPGNFN   Write the output pgn filename, required, mode=overwrite.
  --sort-tag SORT_TAG   Sort the games by tag. [default=eco, value=(eco | ecot | event | date | round | white | black
                        | site | plycount)]. e.g. --sort-tag event
  --sort-direction SORT_DIRECTION
                        Write the direction to sort the games. [default=lowtohigh, value=(lowtohigh | hightolow)].

pgnhelper addeco --help

usage: pgnhelper.py addeco [-h] --inpgnfn INPGNFN --outpgnfn OUTPGNFN --inecopgnfn INECOPGNFN

optional arguments:
  -h, --help            show this help message and exit
  --inpgnfn INPGNFN     Write the input pgn filename, required.
  --outpgnfn OUTPGNFN   Write the output pgn filename, required, mode=overwrite.
  --inecopgnfn INECOPGNFN
                        Write the reference eco.pgn filename, required.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pgnhelper-0.2.0.tar.gz (20.5 kB view hashes)

Uploaded Source

Built Distribution

pgnhelper-0.2.0-py3-none-any.whl (19.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page