Skip to content

library to fetch latest NAV data from AMFI

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

yoursvivek/amfi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

amfi

amfi: library to fetch latest NAV data from AMFI

It aims to extract as much information from AMFI latest nav public data as possible.

This library can also parse data mirrors and local file copies. See nav_from_url and nav_from_file.

Basic Usage

let navs = amfi::daily_nav();
for item in items {
    match item {
        Err(error) => warn!("{}", error),
        Ok(ref record) => println!("{:>10} {} {}", record.nav, record.date, record.name),
    }
}

Cargo features

Enable serde feature for serialization/deserialization support.

License: MIT OR Apache-2.0

About

library to fetch latest NAV data from AMFI

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages