pubmed-client 0.1.0

An async Rust client for PubMed and PMC APIs for retrieving biomedical research articles
Documentation
1
2
3
4
5
6
7
8
9
//! Common data structures and utilities shared between PubMed and PMC modules

pub mod ids;
pub mod models;
pub mod xml_utils;

// Re-export common types
pub use ids::{PmcId, PubMedId};
pub use models::{format_author_name, Affiliation, Author};