diff --git a/describe.py b/describe.py index 1989616..3a23caf 100755 --- a/describe.py +++ b/describe.py @@ -1,14 +1,23 @@ #!/usr/bin/env python3 +""" +This script prints some basic recipe information useful for debugging the +database. +""" + import satisfactory import os + if __name__ == '__main__': - root = os.path.dirname(__file__) - recipe_root = os.path.join(root, 'data', 'recipes') - cookbook = satisfactory.Cookbook(recipe_root) + def main(): + root = os.path.dirname(__file__) + recipe_root = os.path.join(root, 'data', 'recipes') + cookbook = satisfactory.Cookbook(recipe_root) - for i in cookbook.resources(): - print(i) + print("Resources:") + for i in cookbook.resources(): + print(i) + main()