telnetlib.Telnet.read_very_eager()
  • References/Python/Python/Internet

Telnet.read_very_eager() Read everything that can be without blocking in I/O (eager). Raise

2025-01-10 15:47:30
xmlrpc
  • References/Python/Python/Internet

XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a transport. With it, a client can call methods with parameters on a remote server (the server is

2025-01-10 15:47:30
cgi.escape()
  • References/Python/Python/Internet

cgi.escape(s, quote=False) Convert the characters '&', '<' and '>' in string

2025-01-10 15:47:30
http.server.BaseHTTPRequestHandler
  • References/Python/Python/Internet

class http.server.BaseHTTPRequestHandler(request, client_address, server) This class is used to handle the HTTP requests that

2025-01-10 15:47:30
smtpd.SMTPChannel.peer
  • References/Python/Python/Internet

peer Holds the name of the client peer as returned by conn.getpeername() where conn is conn

2025-01-10 15:47:30
cgi.parse_header()
  • References/Python/Python/Internet

cgi.parse_header(string) Parse a MIME header (such as Content-Type) into a main value and a dictionary

2025-01-10 15:47:30
http.cookiejar.Cookie.value
  • References/Python/Python/Internet

Cookie.value Cookie value (a string), or

2025-01-10 15:47:30
urllib.request.BaseHandler.http_error_nnn()
  • References/Python/Python/Internet

BaseHandler.http_error_nnn(req, fp, code, msg, hdrs) nnn should be a three-digit HTTP error code. This method is also

2025-01-10 15:47:30
socketserver.BaseServer.handle_request()
  • References/Python/Python/Internet

handle_request() Process a single request. This function calls the following methods in order: get_request(),

2025-01-10 15:47:30
http.server.BaseHTTPRequestHandler.handle_one_request()
  • References/Python/Python/Internet

handle_one_request() This method will parse and dispatch the request to the appropriate do_*() method. You should

2025-01-10 15:47:30