Skip to content

Instantly share code, notes, and snippets.

@tmap
Last active September 27, 2018 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmap/512e21dd33fd2b03c0f907810dec040c to your computer and use it in GitHub Desktop.
Save tmap/512e21dd33fd2b03c0f907810dec040c to your computer and use it in GitHub Desktop.
VIS - Very Italian Sausages
from kitchen import seasonings
import sausage_making
def do_things():
# grind function takes 2 args, meat type and % of the total
sausage_making.grind(pork_butt,70)
sausage_making.grind(chuck_steak,15)
sausage_making.grind(pork_fatback,15)
# add spices func takes 2 args, type and % of the total
sausage_making.add_spices(seasonings.salt,1)
sausage_making.add_spices(seasonings.nutmeg,0.01)
sausage_making.add_spices(seasonings.black_pepper,0.03)
sausage_making.add_spices(seasonings.cinnamon,0.01)
sausage_making.mix()
sausage_making.stuff()
do_things()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment