14 lines
271 B
Python
Executable File
14 lines
271 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
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)
|
|
|
|
print(i for i in cookbook.resources())
|
|
|