2019-04-27 13:56:46 +10:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2019-04-28 11:03:27 +10:00
|
|
|
import satisfactory
|
2019-04-27 13:56:46 +10:00
|
|
|
|
2019-04-28 14:50:11 +10:00
|
|
|
import os
|
2019-04-27 13:56:46 +10:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
root = os.path.dirname(__file__)
|
|
|
|
recipe_root = os.path.join(root, 'data', 'recipes')
|
2019-04-28 11:03:27 +10:00
|
|
|
cookbook = satisfactory.Cookbook(recipe_root)
|
2019-04-27 13:56:46 +10:00
|
|
|
|
2019-04-28 11:03:27 +10:00
|
|
|
print(i for i in cookbook.resources())
|
2019-04-27 13:56:46 +10:00
|
|
|
|