当前位置: 首页>>代码示例>>Python>>正文


Python RawIOBase.read方法代码示例

本文整理汇总了Python中io.RawIOBase.read方法的典型用法代码示例。如果您正苦于以下问题:Python RawIOBase.read方法的具体用法?Python RawIOBase.read怎么用?Python RawIOBase.read使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在io.RawIOBase的用法示例。


在下文中一共展示了RawIOBase.read方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: wait_until_ready

# 需要导入模块: from io import RawIOBase [as 别名]
# 或者: from io.RawIOBase import read [as 别名]
    def wait_until_ready(self, channel:RawIOBase, timeout=60):
        """
        sends ' ' (space) and waits for the corresponding ACK message. Once we have 3 of these in a row we can be fairly
        certain the device is ready for ymodem.
        :param channel:
        :param timeout:
        :return:
        """
        success_count = 0
        while channel.readline():  # flush any existing data
            success_count = 0

        while success_count < 2:
            channel.write(b' ')
            result = channel.read()
            if result and result[0]==LightYModemProtocol.ack:
                success_count += 1
开发者ID:spark,项目名称:device-updater,代码行数:19,代码来源:ymodem.py

示例2: bulk_copy

# 需要导入模块: from io import RawIOBase [as 别名]
# 或者: from io.RawIOBase import read [as 别名]
def bulk_copy(read_from: io.RawIOBase, write_to: io.RawIOBase):
    while True:
        chunk = read_from.read(BUFFER_SIZE)
        if not chunk:
            break
        write_to.write(chunk)
开发者ID:mruffalo,项目名称:btrfs-sync-daemon,代码行数:8,代码来源:btrfs_incremental_send.py


注:本文中的io.RawIOBase.read方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。