You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(.evn) D:\projects\python-oauth2>python example\server.py
Traceback (most recent call last):
File "example\server.py", line 25, in <module>
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
ModuleNotFoundError: No module named 'BaseHTTPServer'
after fix BaseHTTPRequestHandler (replace from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer to from http.server import BaseHTTPRequestHandler,HTTPServer)another error:
(.evn) D:\projects\python-oauth2>python example\server.py
Traceback (most recent call last):
File "example\server.py", line 28, in <module>
import oauth.oauth as oauth
ModuleNotFoundError: No module named 'oauth'
The text was updated successfully, but these errors were encountered:
I Can not run example/server.py
after fix
BaseHTTPRequestHandler
(replace fromBaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
tofrom http.server import BaseHTTPRequestHandler,HTTPServer
)another error:The text was updated successfully, but these errors were encountered: