I can't seem to figure out how to import a compiled .pyc module into my code so I can use it within my main script. Is this even possible?
If there is foo.pyc, import foo will automatically use foo.pyc whether foo.py exists or not
(If foo.py is newer, it will be used)