0.0
No commit activity in last 3 years
No release in over 3 years
Classifies chess openings from a list of opening moves using the SCID ECO data file
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0
~> 0.10
~> 10.0
 Project Readme

ECO Classifier

Classifies chess openings with a search tree built from the SCID ECO data file

Installation

$ gem install eco-classifier

Or add it to your Gemfile

gem 'eco-classifier'

Classifying chess openings

You can classify a list of moves

opening = EcoClassifier.classify_moves %w( d4 d5 c4 )
opening.name
# Queen's Gambit

Or classify a PGN directly

opening = EcoClassifier.classify_pgn "1.e4 e5 2.f4"
opening.name
# King's Gambit

License

MIT