标签: python web-services http python-2.7 http-headers
我正在使用BaseHTTPRequestHandler类来处理python中的HTTP请求。有一次,我需要所请求URL的方案。
即如果请求的网址为http://abc.com,那么我需要“http”,但如果请求网址为https://def.com则需要“def”。
我尝试过以下事情
我如何获得方案部分?