You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Chapter 04 > 2 Crawling through sites with search:
in function def search(self, topic, site):
there is: content = Content(topic, title, body, url)
instead of: content = Content(topic, url, title, body)
as in: class Content: def __init__(self, topic, url, title, body)
making returned content difficult to understand.
The text was updated successfully, but these errors were encountered:
ClemenceK
changed the title
Simple inversion in Chapter 04 > 2 Crawling through sites with search >
Simple inversion in Chapter 04 > 2 Crawling through sites with search
Dec 29, 2021
in Chapter 04 > 2 Crawling through sites with search:
in function def search(self, topic, site):
there is:
content = Content(topic, title, body, url)
instead of:
content = Content(topic, url, title, body)
as in:
class Content: def __init__(self, topic, url, title, body)
making returned content difficult to understand.
The text was updated successfully, but these errors were encountered: