#parse-json #pgn #parse #json #hash-map #parser #rust

bin+lib pgnparse

Parse PGN to Rust struct ( headers as hash map, main line moves as san, uci, fen, epd records ) or to JSON. All lichess variants are supported. Custom starting position using FEN header is supported.

16 releases

0.1.15 Jan 21, 2021
0.1.14 Jan 21, 2021

#22 in #pgn

Download history 1/week @ 2024-11-13 5/week @ 2024-11-20 8/week @ 2024-11-27 13/week @ 2024-12-04 52/week @ 2024-12-11 8/week @ 2024-12-18 2/week @ 2025-01-01 8/week @ 2025-01-08 14/week @ 2025-01-15 10/week @ 2025-01-22 6/week @ 2025-01-29 23/week @ 2025-02-05 27/week @ 2025-02-12 13/week @ 2025-02-19 21/week @ 2025-02-26

86 downloads per month
Used in 2 crates

MIT and GPL-3.0+

27KB
632 lines

documentation Crates.io Crates.io (recent)

pgnparse

Parse PGN to Rust struct ( headers as hash map, main line moves as san, uci, fen, epd records ) or to JSON. All lichess variants are supported. Custom starting position using FEN header is supported. Create a book of parsed pgns.

Usage

extern crate env_logger;

use pgnparse::parser::*;

use log::{info};

fn main(){
	env_logger::init();

	let pgn = r#"[FEN "8/8/8/8/8/7k/8/7K w - - 0 1"]
[White "White"]
[Black "Black"]
[Variant "Atomic"]

1. Kh2 Kg2
"#;

	info!("parsing pgn");
	
	let result = parse_pgn_to_rust_struct(pgn);
	
	println!("rust struct = {:?}", result);
	
	let result = parse_pgn_to_json_string(pgn);
	
	println!("json = {}", result);
}

Advanced

extern crate env_logger;

use pgnparse::parser::*;

fn main(){
	env_logger::init();

	let mut book = Book::new().me("chesshyperbot");

	book.parse("test.pgn");

	let pos = book.positions.get("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq -");

	println!("pos for epd = {:?}", pos);

	if let Some(pos) = pos {
		let m = pos.get_random_weighted_by_plays();

		println!("random weighted by plays = {:?} , plays = {}", m, m.unwrap().plays());

		let m = pos.get_random_weighted_by_perf();

		println!("random weighted by perf = {:?} , perf = {}", m, m.unwrap().perf());

		let m = pos.get_random_mixed(50);

		println!("random mixed = {:?}", m);
	}
}

Logging

export RUST_LOG=info
# or
export RUST_LOG=debug

Dependencies

~5–14MB
~161K SLoC