Praye.rs
Lightweight and highly accurate low-level library for calculating (Islamic) prayer times.
Usage
use ;
let prayer_manager = new;
let a_date = Utc.ymd;
let a_house = Coordinates;
let prayers = prayer_manager.get_times;
Lightweight and highly accurate low-level library for calculating (Islamic) prayer times.
use prayers::{CalculationMethods, Coordinates, HightLatMethods, PrayerManager, TimeZone, Utc};
let prayer_manager = PrayerManager::new(CalculationMethods::MWL, Some(HightLatMethods::NightMiddle));
let a_date = Utc.ymd(2021, 4, 12);
let a_house = Coordinates(38.8976763, -77.036529, 18.0);
let prayers = prayer_manager.get_times(a_date, a_house);