Skip to content

Instantly share code, notes, and snippets.

@aaossa
Last active September 8, 2015 15:28
Show Gist options
  • Save aaossa/c164b7216d2d89d5ad61 to your computer and use it in GitHub Desktop.
Save aaossa/c164b7216d2d89d5ad61 to your computer and use it in GitHub Desktop.
This snippets allows to import a compiled python file in a simple way
import imp
# This snippet allows to import a compiled python file
# in a simple way
my_module = imp.load_compiled(
"my_module", r"full\or\relative\path\to\module.pyc")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment