Recent posts
Tag: #http · 4 posts
Posted Nov 7
https://docs.python.org/3.6/library/cgi.html #cgi — Common Gateway Interface support A CGI script is invoked by an #HTTP server, usually to process user input submitted through an #HTML <FORM> or <ISINDEX> element. #server
Posted Oct 4
https://www.fullstackpython.com/websockets.html A #WebSocket is a standard protocol for two-way data transfer between a #client and #server. The WebSockets protocol does not run over #HTTP, instead it is a separate implementation on top of #TCP. #AJAX
Posted Oct 4
http://www.techbeamers.com/python-tutorial-essentials-of-python-socket-programming/ Essentials of Python #Socket Programming You Should Know Python offers two types of #API libraries that we can use for socket programming. At the low-level, Python utilizes the “socket” library to implement #client and #server#modules for both #connectionless and #connection-oriented #network protocols. Whereas, at the higher-level, You can use libraries like #ftplib and #httplib to interact with application-level network protocols like #FTP and #HTTP.
Posted Aug 10
https://docs.python.org/3/library/xmlrpc.html #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 named by a URI) and get back structured data. #xmlrpc is a package that collects server and client modules implementing XML-RPC. The modules are: xmlrpc.client xmlrpc.server