Crates.io | tagesschau |
lib.rs | tagesschau |
version | 0.2.6 |
source | src |
created_at | 2024-02-03 18:49:05.312087 |
updated_at | 2024-02-04 19:24:55.58283 |
description | A client library for interacting with the Tagesschau's `/api2/news` endpoint. |
homepage | |
repository | https://github.com/RedCommander735/Tagesschau.rs |
max_upload_size | |
id | 1125591 |
size | 30,140 |
A client library for interacting with the Tagesschau's /api2/news
endpoint.
let start = TDate::from_calendar_date(2024, Month::January, 20)?;
let end = TDate::from_calendar_date(2024, Month::January, 31)?;
let mut builder = TRequestBuilder::new();
builder
.ressort(Ressort::Wirtschaft)
.timeframe(tagesschau::Timeframe::DateRange(
DateRange::new(start, end)?,
));
let articles: Vec<TextArticle> = builder.get_text_articles().await?;
for article in articles {
println!("{} - {}", article.title(), article.date().time());
}
Gesetzlicher Mindestlohn zeigt positive Wirkung - 14:52:03.304
E-Autos werden beliebter – nur nicht in Deutschland - 17:07:02.836
Fed lässt Leitzins erneut unverändert - 20:50:58.427
Fed enttäuscht Zinshoffnungen - 22:16:27.875
...
This project is licensed under the MIT License.
See LICENSE for more information.