This product is not supported for your selected Datadog site. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
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()