Skip to content

Instantly share code, notes, and snippets.

@sprout42
Last active November 12, 2021 15:27
Show Gist options
  • Save sprout42/eaf96e3b0c26458688160d9e76b03cd2 to your computer and use it in GitHub Desktop.
Save sprout42/eaf96e3b0c26458688160d9e76b03cd2 to your computer and use it in GitHub Desktop.
import fun with python!
import builtins
_old_import = builtins.__import__
def _test_import(*args, **kwargs):
print('yo!', args, kwargs)
return _old_import(*args, **kwargs)
builtins.__import__ = _test_import
import os
print('done')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment