Requirement already satisfied: httpimport in /home/daforne/repos/github/davidefornelli/cookbook/.venv/lib/python3.7/site-packages (0.7.2)Note: you may need to restart the kernel to use updated packages.
Import chef
import httpimportwith httpimport.remote_repo( ['chef'], f"https://gist.githubusercontent.com/{gist_user}/{gist_chef_id}/raw"): import chef
Import ingredients
def ingredients_import(ingredients): for ingredient in ingredients: mod, package = chef.process_gist_ingredient( gist_id=ingredient[0], gist_file=ingredient[1], gist_user=gist_user ) globals()[package] = modingredients_import(ingredients=ingredients_to_import)