quantrs 0.1.8

A tiny Rust library for quantitative finance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// pub mod data;
pub mod fixed_income;
// pub mod options;

use pyo3::prelude::*;

#[pymodule]
fn quantrs(m: &Bound<'_, PyModule>) -> PyResult<()> {
    fixed_income::register(m)?;
    // options::register(m)?;
    // data::register(m)?;
    Ok(())
}