ie-schema 0.1.5

A flexible schema specification and parser for information extraction tasks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "python")]
use pyo3_stub_gen::Result;

#[cfg(feature = "python")]
fn main() -> Result<()> {
    let stub = ie_schema::stub_info()?;
    stub.generate()?;
    Ok(())
}

#[cfg(not(feature = "python"))]
fn main() {
    eprintln!("stub_gen requires the `python` feature");
}