Max Humber

Results 13 comments of Max Humber

Interesting idea! I don't think I fully understand, though, why would: ```python assert 'Home page' in str(Soup(body)) ``` Not work?

portray on_github_pages

Good find! Hasn't ever been a problem for me in production, but should definitely be fixed. I've earmarked a week at the end of this quarter to clean up some...

Yikes! That's some pretty nasty HTML. I'm actually surprised that `.find()` even picks it up! Unsurprisingly, bs4 also fails with that snippet: ``` from bs4 import BeautifulSoup soup = BeautifulSoup(html)...

@paw-lu I wasn't able to get this in the 1.0 release... but I'm still thinking about it. After some digging it turns out the extra `>` isn't the problem. Check...

Seems it’s failing on `get`... I would replace get with requests.get, and then use Soup() on the resulting html.

I think that would be ideal! Something like: ``` # hickory.log [2020-10-07 10:07:05 AM] Fired successfully "Hello world!" [2020-10-07 10:10:30 AM] Unsuccessful [2020-10-07 10:15:30 AM] Unsuccessful ```

@rexdivakar I’m in the midst of this myself. And I’m getting to your PRs that you’ve submitted! (They’ll be in before the end of Hacktoberfest, don’t worry! I’ve just been...