博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python module的结构
阅读量:5254 次
发布时间:2019-06-14

本文共 614 字,大约阅读时间需要 2 分钟。

python有很多module,下面是module的结构图:

 

拿httplib做例子,httlip module有:

4个class( HTTPConnection,HTTPSConnection,HTTPResponse,HTTPMessage ),

12个exception( HTTPException,NotConnected,InvalidURL,UnknownProtocol,UnknownTransferEncoding,UnimplementedFileMode,IncompleteRead,ImproperConnectionState,CannotSendRequest,CannotSendHeader,ResponseNotReady,BadStatusLine 

3个constant( HTTP_PORT,HTTPS_PORT,responses 

 

class会包含method和attribute(不一定有)

拿HTTPResponse做例子,HTTPResponse有:

4个method( read(),getheader(name[,default]),getheaders(),fileno() )

4个constant( msg,version,status,reason )

 

转载于:https://www.cnblogs.com/HpuAcmer/p/4074768.html

你可能感兴趣的文章