开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.8.1
/
Doc
/
library
/
telnetlib.rst
python3.8.1
/
Doc
/
library
/
telnetlib.rst
telnetlib.rst 7.88 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月16日 09:46 +08:00 . git init

:mod:`telnetlib` --- Telnet client

.. module:: telnetlib
 :synopsis: Telnet client class.

.. sectionauthor:: Skip Montanaro <skip@pobox.com>

Source code: :source:`Lib/telnetlib.py`

.. index:: single: protocol; Telnet


The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the Telnet protocol. See :class:`Telnet` represents a connection to a Telnet server. The instance is initially not connected by default; the :meth:`~Telnet.open` method must be used to establish a connection. Alternatively, the host name and optional port number can be passed to the constructor too, in which case the connection to the server will be established before the constructor returns. The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used).

Do not reopen an already connected instance.

This class has many :meth:`read_\*` methods. Note that some of them raise :exc:`EOFError` when the end of the connection is read, because they can return an empty string for other reasons. See the individual descriptions below.

A :class:`Telnet` object is a context manager and can be used in a :keyword:`with` statement. When the :keyword:`!with` block ends, the :meth:`close` method is called:

>>> from telnetlib import Telnet
>>> with Telnet('localhost', 23) as tn:
... tn.interact()
...
.. versionchanged:: 3.6 Context manager support added
.. seealso::

 :rfc:`854` - Telnet Protocol Specification
 Definition of the Telnet protocol.


Telnet Objects

:class:`Telnet` instances have the following methods:

.. method:: Telnet.read_until(expected, timeout=None)

 Read until a given byte string, *expected*, is encountered or until *timeout*
 seconds have passed.

 When no match is found, return whatever is available instead, possibly empty
 bytes. Raise :exc:`EOFError` if the connection is closed and no cooked data
 is available.


.. method:: Telnet.read_all()

 Read all data until EOF as bytes; block until connection closed.


.. method:: Telnet.read_some()

 Read at least one byte of cooked data unless EOF is hit. Return ``b''`` if
 EOF is hit. Block if no data is immediately available.


.. method:: Telnet.read_very_eager()

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

 Raise :exc:`EOFError` if connection closed and no cooked data available.
 Return ``b''`` if no cooked data available otherwise. Do not block unless in
 the midst of an IAC sequence.


.. method:: Telnet.read_eager()

 Read readily available data.

 Raise :exc:`EOFError` if connection closed and no cooked data available.
 Return ``b''`` if no cooked data available otherwise. Do not block unless in
 the midst of an IAC sequence.


.. method:: Telnet.read_lazy()

 Process and return data already in the queues (lazy).

 Raise :exc:`EOFError` if connection closed and no data available. Return
 ``b''`` if no cooked data available otherwise. Do not block unless in the
 midst of an IAC sequence.


.. method:: Telnet.read_very_lazy()

 Return any data available in the cooked queue (very lazy).

 Raise :exc:`EOFError` if connection closed and no data available. Return
 ``b''`` if no cooked data available otherwise. This method never blocks.


.. method:: Telnet.read_sb_data()

 Return the data collected between a SB/SE pair (suboption begin/end). The
 callback should access these data when it was invoked with a ``SE`` command.
 This method never blocks.


.. method:: Telnet.open(host, port=0[, timeout])

 Connect to a host. The optional second argument is the port number, which
 defaults to the standard Telnet port (23). The optional *timeout* parameter
 specifies a timeout in seconds for blocking operations like the connection
 attempt (if not specified, the global default timeout setting will be used).

 Do not try to reopen an already connected instance.

 .. audit-event:: telnetlib.Telnet.open self,host,port telnetlib.Telnet.open


.. method:: Telnet.msg(msg, *args)

 Print a debug message when the debug level is ``>`` 0. If extra arguments are
 present, they are substituted in the message using the standard string
 formatting operator.


.. method:: Telnet.set_debuglevel(debuglevel)

 Set the debug level. The higher the value of *debuglevel*, the more debug
 output you get (on ``sys.stdout``).


.. method:: Telnet.close()

 Close the connection.


.. method:: Telnet.get_socket()

 Return the socket object used internally.


.. method:: Telnet.fileno()

 Return the file descriptor of the socket object used internally.


.. method:: Telnet.write(buffer)

 Write a byte string to the socket, doubling any IAC characters. This can
 block if the connection is blocked. May raise :exc:`OSError` if the
 connection is closed.

 .. audit-event:: telnetlib.Telnet.write self,buffer telnetlib.Telnet.write

 .. versionchanged:: 3.3
 This method used to raise :exc:`socket.error`, which is now an alias
 of :exc:`OSError`.


.. method:: Telnet.interact()

 Interaction function, emulates a very dumb Telnet client.


.. method:: Telnet.mt_interact()

 Multithreaded version of :meth:`interact`.


.. method:: Telnet.expect(list, timeout=None)

 Read until one from a list of a regular expressions matches.

 The first argument is a list of regular expressions, either compiled
 (:ref:`regex objects <re-objects>`) or uncompiled (byte strings). The
 optional second argument is a timeout, in seconds; the default is to block
 indefinitely.

 Return a tuple of three items: the index in the list of the first regular
 expression that matches; the match object returned; and the bytes read up
 till and including the match.

 If end of file is found and no bytes were read, raise :exc:`EOFError`.
 Otherwise, when nothing matches, return ``(-1, None, data)`` where *data* is
 the bytes received so far (may be empty bytes if a timeout happened).

 If a regular expression ends with a greedy match (such as ``.*``) or if more
 than one expression can match the same input, the results are
 non-deterministic, and may depend on the I/O timing.


.. method:: Telnet.set_option_negotiation_callback(callback)

 Each time a telnet option is read on the input flow, this *callback* (if set) is
 called with the following parameters: callback(telnet socket, command
 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.


Telnet Example

.. sectionauthor:: Peter Funk <pf@artcom-gmbh.de>


A simple example illustrating typical use:

import getpass
import telnetlib

HOST = "localhost"
user = input("Enter your remote account: ")
password = getpass.getpass()

tn = telnetlib.Telnet(HOST)

tn.read_until(b"login: ")
tn.write(user.encode('ascii') + b"\n")
if password:
 tn.read_until(b"Password: ")
 tn.write(password.encode('ascii') + b"\n")

tn.write(b"ls\n")
tn.write(b"exit\n")

print(tn.read_all().decode('ascii'))
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /