Open yoongaemii opened 7 years ago
super(JsonCrawler, self).__init__()
is for initializing the parent class of JsonCrawler
(For detailed information, check out https://stackoverflow.com/questions/3694371/how-do-i-initialize-the-base-super-class). You don't need to understand about class inheritance in this homework.self.start()
should be the very last line of the __init__
method.I've modified your question a bit in order to prevent spoiler. If you want to ask questions regarding your implementation, please ask personally via email :slightly_smiling_face:.
In
__init__
method ofJsonCrawler
, I wonder what below code block doessuper(JsonCrawler, self).__init__()
one more thing, while initializing JsonCrawler instance I assigned the 'active' attribute, but if I run the code it turns out to have an AttributeError like