From 40a1f2025d7897af0cab61b92933992887d04ed9 Mon Sep 17 00:00:00 2001 From: Max Value Date: Sun, 11 May 2025 18:22:14 +0100 Subject: [PATCH] Initial commit --- sous.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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) + -- 2.39.2