This is a simple library to speak with the Foodles API.
use foodle_api::fridge;
fn get_fridge_data() {
let cookie_value = "YOUR_SESSIONID_COOKIE_VALUE";
fridge::get(cookie_value)?
}
The Foodle API was pretty simple to use, so I decided to make a library for it. It's pretty fun to make stats about quantities of food over time, and this allow me to learn more about rust.
This project is licensed under the Unlicense license - see the LICENSE.md file for details