stock-trek 0.1.6

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "python")]
use pyo3::prelude::*;

#[cfg(feature = "python")]
#[pymodule]
pub fn _stock_trek(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
    super::data::add_submodule(py, m)?;

    Ok(())
}