openpql-runner
PQL query executor — library and opql CLI.
CLI
Library
use io;
use PQLRunner;
run?;
Links
- Repo · Docs · Playground
MIT — see LICENSE.
PQL query executor — library and opql CLI.
opql --run "select equity from hero='AhKh', villain='QQ+', board='Ah9s2c', game='holdem'"
use std::io;
use openpql_runner::PQLRunner;
PQLRunner::run(
"select equity from hero='AhKh', villain='QQ+', board='', game='holdem'",
&mut io::stdout(),
&mut io::stderr(),
)?;
MIT — see LICENSE.