ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
import importlib.utilimport osimport syssys.path.insert(0, os.path.dirname(__file__))module_name = 'wsgi'module_path = 'blog/wsgi.py'spec = importlib.util.spec_from_file_location(module_name, module_path)wsgi = importlib.util.module_from_spec(spec)sys.modules[module_name] = wsgispec.loader.exec_module(wsgi)application = wsgi.application
Great dude
I created python app but when i open it shows service unavailable
Huge lifesaver because most of the other ones show on python versions lower that 3.8Thanks a lot brother🫂
@jeromekm4479 Glad to hear it helped, Jerome! 🙌Keep coding strong, brother!
import importlib.util
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
module_name = 'wsgi'
module_path = 'blog/wsgi.py'
spec = importlib.util.spec_from_file_location(module_name, module_path)
wsgi = importlib.util.module_from_spec(spec)
sys.modules[module_name] = wsgi
spec.loader.exec_module(wsgi)
application = wsgi.application
Great dude
I created python app but when i open it shows service unavailable
Huge lifesaver because most of the other ones show on python versions lower that 3.8
Thanks a lot brother🫂
@jeromekm4479 Glad to hear it helped, Jerome! 🙌Keep coding strong, brother!