해결방법
python3 기준
1. http:// 또는 https:// 제거
예시
# 기존
conn = http.client.HTTPConnection("http://localhost")
# 변경
conn = http.client.HTTPConnection("localhost")
2. port 번호 지정
예시
# 기존
conn = http.client.HTTPConnection("localhost:5555")
# 변경
conn = http.client.HTTPConnection("localhost", 5555)
참조
[python3 docs http.client]: https://docs.python.org/ko/3/library/http.client.html
728x90
'Programing Language > Python' 카테고리의 다른 글
[Python] print 함수 (0) | 2023.08.16 |
---|---|
[Python] beautifulsoup에서 HTML 가져오기 (0) | 2023.06.16 |
[Python] Snake Case To Camel Case ( str, dict, list ) (0) | 2023.05.30 |
[Python] pydantic.error_wrappers.ValidationError (0) | 2023.05.21 |
[Python] replace 관련 (0) | 2023.05.20 |
댓글