tangram_core_rs 0.3.0

A framework for real-time analysis of ADS-B and Mode S surveillance data
Documentation
1
2
3
4
5
6
7
8
9
10
use pyo3_stub_gen::Result;
use tangram_core::stub_info;

// finds the module name (`tangram_core._core`) from pyproject.toml and generates
// the pyi at `packages/tangram_core/src/tangram_core/_core.pyi`
fn main() -> Result<()> {
    let stub = stub_info()?;
    stub.generate()?;
    Ok(())
}