From: Max Value Date: Sun, 11 May 2025 17:22:14 +0000 (+0100) Subject: Initial commit X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=40a1f2025d7897af0cab61b92933992887d04ed9;p=bread Initial commit --- diff --git a/sous.py b/sous.py index af0c21e..d6171c4 100755 --- a/sous.py +++ b/sous.py @@ -1,7 +1,13 @@ #! /bin/python + import tomllib +import os + +class recipe: + def __init__(self): + pass with open("recipes/straight-white.toml", "rb") as f: recipe = tomllib.load(f) -print(recipe) +