• <bdo id='ROgnD'></bdo><ul id='ROgnD'></ul>

      <small id='ROgnD'></small><noframes id='ROgnD'>

      <legend id='ROgnD'><style id='ROgnD'><dir id='ROgnD'><q id='ROgnD'></q></dir></style></legend>
      <i id='ROgnD'><tr id='ROgnD'><dt id='ROgnD'><q id='ROgnD'><span id='ROgnD'><b id='ROgnD'><form id='ROgnD'><ins id='ROgnD'></ins><ul id='ROgnD'></ul><sub id='ROgnD'></sub></form><legend id='ROgnD'></legend><bdo id='ROgnD'><pre id='ROgnD'><center id='ROgnD'></center></pre></bdo></b><th id='ROgnD'></th></span></q></dt></tr></i><div id='ROgnD'><tfoot id='ROgnD'></tfoot><dl id='ROgnD'><fieldset id='ROgnD'></fieldset></dl></div>
      <tfoot id='ROgnD'></tfoot>

        将 io.BytesIO 转换为 io.StringIO 以解析 HTML 页面

        时间:2023-08-07
      1. <tfoot id='zzAOf'></tfoot>

        <i id='zzAOf'><tr id='zzAOf'><dt id='zzAOf'><q id='zzAOf'><span id='zzAOf'><b id='zzAOf'><form id='zzAOf'><ins id='zzAOf'></ins><ul id='zzAOf'></ul><sub id='zzAOf'></sub></form><legend id='zzAOf'></legend><bdo id='zzAOf'><pre id='zzAOf'><center id='zzAOf'></center></pre></bdo></b><th id='zzAOf'></th></span></q></dt></tr></i><div id='zzAOf'><tfoot id='zzAOf'></tfoot><dl id='zzAOf'><fieldset id='zzAOf'></fieldset></dl></div>
      2. <legend id='zzAOf'><style id='zzAOf'><dir id='zzAOf'><q id='zzAOf'></q></dir></style></legend>
        • <bdo id='zzAOf'></bdo><ul id='zzAOf'></ul>

          <small id='zzAOf'></small><noframes id='zzAOf'>

                    <tbody id='zzAOf'></tbody>
                1. 本文介绍了将 io.BytesIO 转换为 io.StringIO 以解析 HTML 页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试解析通过 pyCurl 检索到的 HTML 页面,但 pyCurl WRITEFUNCTION 将页面返回为 BYTES 而不是字符串,因此我无法使用 BeautifulSoup 解析它.

                  I'm trying to parse a HTML page I retrieved through pyCurl but the pyCurl WRITEFUNCTION is returning the page as BYTES and not string, so I'm unable to Parse it using BeautifulSoup.

                  有没有办法将 io.BytesIO 转换为 io.StringIO?

                  Is there any way to convert io.BytesIO to io.StringIO?

                  或者有没有其他方法可以解析 HTML 页面?

                  Or Is there any other way to parse the HTML page?

                  我正在使用 Python 3.3.2.

                  I'm using Python 3.3.2.

                  推荐答案

                  一种天真的方法:

                  # assume bytes_io is a `BytesIO` object
                  byte_str = bytes_io.read()
                  
                  # Convert to a "unicode" object
                  text_obj = byte_str.decode('UTF-8')  # Or use the encoding you expect
                  
                  # Use text_obj how you see fit!
                  # io.StringIO(text_obj) will get you to a StringIO object if that's what you need
                  

                  这篇关于将 io.BytesIO 转换为 io.StringIO 以解析 HTML 页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:为什么“valueAsNumber"返回 NaN 作为值? 下一篇:实现像 A,B,C... AA,AB,... AAA... 这样的编号方案,类

                  相关文章

                  最新文章

                    1. <legend id='wVkol'><style id='wVkol'><dir id='wVkol'><q id='wVkol'></q></dir></style></legend>
                        <bdo id='wVkol'></bdo><ul id='wVkol'></ul>
                    2. <i id='wVkol'><tr id='wVkol'><dt id='wVkol'><q id='wVkol'><span id='wVkol'><b id='wVkol'><form id='wVkol'><ins id='wVkol'></ins><ul id='wVkol'></ul><sub id='wVkol'></sub></form><legend id='wVkol'></legend><bdo id='wVkol'><pre id='wVkol'><center id='wVkol'></center></pre></bdo></b><th id='wVkol'></th></span></q></dt></tr></i><div id='wVkol'><tfoot id='wVkol'></tfoot><dl id='wVkol'><fieldset id='wVkol'></fieldset></dl></div>
                    3. <tfoot id='wVkol'></tfoot>

                      <small id='wVkol'></small><noframes id='wVkol'>