line 25: `body = bs.find('div', {'class', 'post-body'}).text` A Parameter named 'attrs' should be dic type, but the example code and the book has wrong codes. I recommed change the code like `body = bs.find('div', {'class': 'post-body'}).text`