ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH
advanced | search help

Reference
ActivePython 2.5
Python Documentation
Library Reference
Front Matter
Contents
1. Introduction
2. Built-in Objects
3. Built-in Types
4. String Services
5. Data Types
6. Numeric and Mathematical Modules
7. Internet Data Handling
8. Structured Markup Processing Tools
9. File Formats
10. Cryptographic Services
11. File and Directory Access
12. Data Compression and Archiving
13. Data Persistence
14. Generic Operating System Services
15. Optional Operating System Services
16. Unix Specific Services
17. Interprocess Communication and Networking
18. Internet Protocols and Support
18.1 webbrowser -- Convenient Web-browser controller
18.2 cgi -- Common Gateway Interface support.
18.3 cgitb -- Traceback manager for CGI scripts
18.4 wsgiref -- WSGI Utilities and Reference Implementation
18.5 urllib -- Open arbitrary resources by URL
18.6 urllib2 -- extensible library for opening URLs
18.7 httplib -- HTTP protocol client
18.8 ftplib -- FTP protocol client
18.9 gopherlib -- Gopher protocol client
18.10 poplib -- POP3 protocol client
18.11 imaplib -- IMAP4 protocol client
18.12 nntplib -- NNTP protocol client
18.13 smtplib -- SMTP protocol client
18.14 smtpd -- SMTP Server
18.15 telnetlib -- Telnet client
18.16 uuid -- UUID objects according to RFC 4122
18.17 urlparse -- Parse URLs into components
18.18 SocketServer -- A framework for network servers
18.19 BaseHTTPServer -- Basic HTTP server
18.20 SimpleHTTPServer -- Simple HTTP request handler
18.21 CGIHTTPServer -- CGI-capable HTTP request handler
18.22 cookielib -- Cookie handling for HTTP clients
18.23 Cookie -- HTTP state management
18.24 xmlrpclib -- XML-RPC client access
18.25 SimpleXMLRPCServer -- Basic XML-RPC server
18.26 DocXMLRPCServer -- Self-documenting XML-RPC server
19. Multimedia Services
20. Graphical User Interfaces with Tk
21. Internationalization
22. Program Frameworks
23. Development Tools
24. The Python Debugger
25. The Python Profilers
26. Python Runtime Services
27. Custom Python Interpreters
28. Restricted Execution
29. Importing Modules
30. Python Language Services
31. Python compiler package
32. Abstract Syntax Trees
33. Miscellaneous Services
34. SGI IRIX Specific Services
35. SunOS Specific Services
36. MS Windows Specific Services
A. Undocumented Modules
B. Reporting Bugs
C. History and License
Module Index
Index
About this document ...

MyASPN >> Reference >> ActivePython 2.5 >> Python Documentation >> Library Reference
ActivePython 2.5 documentation


18. Internet Protocols and Support

The modules described in this chapter implement Internet protocols and support for related technology. They are all implemented in Python. Most of these modules require the presence of the system-dependent module socket, which is currently supported on most popular platforms. Here is an overview:

webbrowser   Easy-to-use controller for Web browsers.
cgi   Common Gateway Interface support, used to interpret forms in server-side scripts.
cgitb   Configurable traceback handler for CGI scripts.
wsgiref   WSGI Utilities and Reference Implementation
wsgiref.util  
wsgiref.headers  
wsgiref.simple_server  
wsgiref.validate  
wsgiref.handlers  
urllib   Open an arbitrary network resource by URL (requires sockets).
urllib2   An extensible library for opening URLs using a variety of protocols
httplib   HTTP and HTTPS protocol client (requires sockets).
ftplib   FTP protocol client (requires sockets).
gopherlib   Gopher protocol client (requires sockets).
poplib   POP3 protocol client (requires sockets).
imaplib   IMAP4 protocol client (requires sockets).
nntplib   NNTP protocol client (requires sockets).
smtplib   SMTP protocol client (requires sockets).
smtpd   Implement a flexible SMTP server
telnetlib   Telnet client class.
uuid   UUID objects (universally unique identifiers) according to RFC 4122
urlparse   Parse URLs into components.
SocketServer   A framework for network servers.
BaseHTTPServer   Basic HTTP server (base class for SimpleHTTPServer and CGIHTTPServer).
SimpleHTTPServer   This module provides a basic request handler for HTTP servers.
CGIHTTPServer   This module provides a request handler for HTTP servers which can run CGI scripts.
cookielib   Cookie handling for HTTP clients
Cookie   Support for HTTP state management (cookies).
xmlrpclib   XML-RPC client access.
SimpleXMLRPCServer   Basic XML-RPC server implementation.
DocXMLRPCServer   Self-documenting XML-RPC server implementation.

See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved