Skip to content

Instantly share code, notes, and snippets.

@vitiral
Created January 6, 2015 21:45
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 vitiral/fa422211492697d68da7 to your computer and use it in GitHub Desktop.
Save vitiral/fa422211492697d68da7 to your computer and use it in GitHub Desktop.
python import from anywhere
import imp
module = imp.find_module('path/to/module')
module = imp.load_module('module_name', *module)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment