finance-calcs 0.2.0

Standard financial calculations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use pyo3::prelude::*;

mod example;

pub use example::Example;


#[pymodule]
fn finance_calcs(_py: Python, m: &Bound<PyModule>) -> PyResult<()> {
    // Example
    m.add_class::<Example>().unwrap();
    Ok(())
}