Skip to content

Instantly share code, notes, and snippets.

@Cyril-Pop
Cyril-Pop / __init__.py
Created July 20, 2020 13:01 — forked from tera3939/__init__.py
Pythonのimport文をホックするやつ
import sys
from . import music_importer
sys.meta_path.append(music_importer.MusicImporter)
# このモジュールでimport sysされているため、必ずsys.modulesにsysはある
sys.modules['sys'] = sys