用法:
BaseTransport.get_extra_info(name, default=None)
返回有關它使用的傳輸或底層資源的信息。
name
是一個字符串,表示要獲取的transport-specific 信息。default
是在信息不可用或傳輸不支持使用給定的第三方事件循環實現或在當前平台上查詢它時返回的值。例如,以下代碼嘗試獲取傳輸的底層套接字對象:
sock = transport.get_extra_info('socket') if sock is not None: print(sock.getsockopt(...))
可以在某些傳輸上查詢的信息類別:
- 插座:
'peername'
:套接字連接的遠程地址,socket.socket.getpeername()
的結果(None
錯誤)'socket'
:socket.socket
實例'sockname'
: 套接字自己的地址,socket.socket.getsockname()
的結果
- SSL 套接字:
'compression'
:壓縮算法用作字符串,如果連接未壓縮,則為None
;ssl.SSLSocket.compression()
的結果'cipher'
:一個 three-value 元組,其中包含正在使用的密碼的名稱、定義其使用的 SSL 協議的版本以及正在使用的秘密位數;ssl.SSLSocket.cipher()
的結果'peercert'
:對等證書;ssl.SSLSocket.getpeercert()
的結果'sslcontext'
:ssl.SSLContext
實例'ssl_object'
:ssl.SSLObject
或ssl.SSLSocket
實例
- 管道:
'pipe'
:管道對象
- 子流程:
'subprocess'
:subprocess.Popen
實例
- 插座:
相關用法
- Python asyncio.shield用法及代碼示例
- Python asyncio.run用法及代碼示例
- Python asyncio.wait_for用法及代碼示例
- Python asyncio.create_task用法及代碼示例
- Python asyncio.Task.cancel用法及代碼示例
- Python asyncio.loop.run_in_executor用法及代碼示例
- Python asyncio.Server用法及代碼示例
- Python asyncio.Server.serve_forever用法及代碼示例
- Python asyncio.Event用法及代碼示例
- Python asyncio.gather用法及代碼示例
- Python asyncio.sleep用法及代碼示例
- Python asyncio.to_thread用法及代碼示例
- Python asyncio.Condition用法及代碼示例
- Python asyncio.SelectorEventLoop用法及代碼示例
- Python asyncio.run_coroutine_threadsafe用法及代碼示例
- Python asyncio.Lock用法及代碼示例
- Python asyncio.Future.add_done_callback用法及代碼示例
- Python asyncio.loop.shutdown_asyncgens用法及代碼示例
- Python asyncio.as_completed用法及代碼示例
- Python asyncio.Semaphore用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 asyncio.BaseTransport.get_extra_info。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。