Skip to content

HTMLTokenizer.stream.chunkOffset not updating on string with no html elements #571

@ehsmeng

Description

@ehsmeng
from html5lib._tokenizer import HTMLTokenizer
from io import StringIO

class T():
    def __init__(self, data):
        print("Object from string: " + data)
        self.src = StringIO()
        self.tokenizer = HTMLTokenizer(self.src)

        pos = self.src.tell()
        self.src.write(data)
        self.src.seek(pos)
        self.handle_tokens()
        self.src.close()

    def handle_tokens(self):
        for token in self.tokenizer:
            print(str(self.tokenizer.stream.chunkOffset))

T("klas katt")
T("klas katt<br>")

->

Object from string: klas katt
0
Object from string: klas katt

9
13

I expected first number outputted to be 9.

Apologies if this is an internal variable I should not use.
I'm trying to deduce tag offsets (start,stop) in the html document.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      pFad - Phonifier reborn

      Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

      Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


      Alternative Proxies:

      Alternative Proxy

      pFad Proxy

      pFad v3 Proxy

      pFad v4 Proxy