Never invoke subprocess.Popen with shell = True leads to unnecessary privileges and access to the underlying execution runtime. Execution with shell = True should clearly be verified and checked for code in production.
importsubprocessdeffind_dogweb_packages():# setuptools.find_packages is too slow since it walks the entire codebase, including Javascript code.# This is an equivalent but optimized function, specific to our codebase, listing all the available# packages.# Look for __init__.py files using fast UNIX toolsr=subprocess.Popen("find %s -name '__init__.py'"%" ".join(MODULE_PATHS),shell=True,stdout=subprocess.PIPE).stdout.read()