【发布时间】:2017-08-26 21:35:55
【问题描述】:
# -*- coding: utf-8 -*-
"""
Created on Sat Aug 26 17:31:06 2017
@author: Pavan Vallapureddy
"""
"""
Write a program to prompt the user for the URL so it can read any web page.
You can use split('/') to break the URL into its component parts so you can
extract the host name for the socket connect call.
"""
import socket
url = input("Enter url: ")
port = int(input("Enter port: "))
urlSplit = url.split("/")
host = urlSplit[2]
mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
mysock.connect((host, port))
cmd = "GET " + url + " HTTP/1.0\r\n\r\n".encode
mysock.send(cmd)
while True:
data = mysock.recv(512)
if (len(data) < 1):
break
print(data.decode())
mysock.close()
输入网址:http://data.pr4e.org/romeo.txt
输入端口:80
回溯(最近一次通话最后一次):
文件“exercise1.py”,第 17 行,在
cmd = "GET " + url + " HTTP/1.0\r\n\r\n".encode
TypeError: 必须是 str,而不是 builtin_function_or_method
【问题讨论】:
标签: python sockets network-programming