Thank you
what do you mean by "return something like this in parse index." ?
Do I have to write something like
def parse_index(self):
soup = [
('Articles',
[
{'title': '1', 'url': 'https://www.example.org/article1'},
{'title': '2', 'url': 'link2' },
]
),
]
Sorry for my basic question !
|