anytime_crepes_spo_ingredients = py` #depends on ${anytime_crepes_spo_2}
# this part is duplicated in this cell from above
s = ${URIRef}("https://www.food.com/recipe/327593")
uri = "http://purl.org/heals/food/"
ns_wtm = ${rdflib}.Namespace(uri)
p = ns_wtm.hasIngredient
# this part is duplicated in this cell from above
uri = "http://purl.org/heals/ingredient/"
ns_ind = ${rdflib}.Namespace(uri)
o = ns_ind.ChickenEgg
# these are the new things:
${g}.add((s, p, o,))
${g}.add((s, p, ns_ind.CowMilk,))
g = ${g}.add((s, p, ns_ind.WholeWheatFlour,))
repr(g)`