data-access-layer 0.1.1

A data access pipeline
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod images;
pub mod srt_reciever;
pub mod tags;

#[cfg(feature = "python")]
pub mod python_api;

#[cfg(feature = "python")]
use pyo3::prelude::*;


#[cfg(feature = "python")]
#[pymodule]
fn data_access_layer(_py: Python, m: &PyModule) -> PyResult<()> {
    m.add_function(wrap_pyfunction!(python_api::read_rgb_image, m)?)?;
    Ok(())
}