Skip to content

Instantly share code, notes, and snippets.

@toaco
Created January 30, 2018 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toaco/2585571342646d39e991315d2c762d6b to your computer and use it in GitHub Desktop.
Save toaco/2585571342646d39e991315d2c762d6b to your computer and use it in GitHub Desktop.
导入某个路径下的所有模块
import importlib
import pkgutil
for loader, name, is_pkg in pkgutil.walk_packages(__path__):
importlib.import_module('.{}'.format(name), 'models')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment