MCPcopy Index your code
hub / github.com/kivy/python-for-android / recipe_dirs

Method recipe_dirs

pythonforandroid/recipe.py:704–711  ·  view source on GitHub ↗
(cls, ctx)

Source from the content-addressed store, hash-verified

702
703 @classmethod
704 def recipe_dirs(cls, ctx):
705 recipe_dirs = []
706 if ctx.local_recipes is not None:
707 recipe_dirs.append(realpath(ctx.local_recipes))
708 if ctx.storage_dir:
709 recipe_dirs.append(join(ctx.storage_dir, 'recipes'))
710 recipe_dirs.append(join(ctx.root_dir, "recipes"))
711 return recipe_dirs
712
713 @classmethod
714 def list_recipes(cls, ctx):

Callers 3

list_recipesMethod · 0.80
get_recipeMethod · 0.80
test_recipe_dirsMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_recipe_dirsMethod · 0.64