lbl-python 0.1.0

lbl is a toolkit for managing address labels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod query_adapter;

use pyo3::prelude::*;

/// A Python module implemented in Rust.
#[pymodule]
#[pyo3(name = "_lbl_rust")]
fn lbl_rust(_py: Python, m: &PyModule) -> PyResult<()> {
    m.add_function(wrap_pyfunction!(query_adapter::_query, m)?)?;
    m.add("__version__", env!("CARGO_PKG_VERSION"))?;
    Ok(())
}