Exemplo n.º 1
0
class Pyhtml:
    def __init__(self, filename):
        self.to_parse = File(filename)

    def wtf(self):
        string_of_html = self.to_parse.open_file()
        parser = Pyhtmlparser(string_of_html)
        return parser
Exemplo n.º 2
0
class Pyhtml:
    def __init__(self, filename):
        self.to_parse = File(filename)

    def wtf(self):
       string_of_html = self.to_parse.open_file()
       parser = Pyhtmlparser(string_of_html)
       return parser
Exemplo n.º 3
0
 def __init__(self, filename):
     self.to_parse = File(filename)
Exemplo n.º 4
0
 def __init__(self, filename):
     self.to_parse = File(filename)