File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1- from . import input # make PyCharm understand `pywebio.input.xxx` expression
1+ from . import input # enable `pywebio.input.xxx` expression without `import pywebio.input`
22from . import output
33from . import platform
44from . import session
Original file line number Diff line number Diff line change 149149from .page import seo
150150from .path_deploy import path_deploy_http , path_deploy
151151from .tornado import start_server
152+ from . import tornado
153+
154+ try :
155+ from . import flask # enable `pywebio.platform.flask.xxx` expression without `import pywebio.platform.flask`
156+ except Exception :
157+ pass
158+
159+ try :
160+ from . import django
161+ except Exception :
162+ pass
163+
164+ try :
165+ from . import fastapi
166+ except Exception :
167+ pass
168+
169+ try :
170+ from . import tornado_http
171+ except Exception :
172+ pass
You can’t perform that action at this time.
0 commit comments