#!/usr/local/bin/python3 from importlib.machinery import FileFinder import importlib.util import os l = FileFinder(os.__file__) spec = importlib.util.spec_from_file_location('os', loader=l) module = importlib.util.module_from_spec(spec) spec.loader.exec_module(module) print(module)