alkeon c8778d1466 Handle links with spaces | před 1 rokem | |
---|---|---|
.gitignore | před 5 roky | |
LICENSE | před 5 roky | |
README.md | před 5 roky | |
bot-in-action.gif | před 5 roky | |
deadseeker.py | před 1 rokem |
This was for my website on building a dead link checker when I test it. Forked from **healeycodes
Let's say I have a website and I want to find any dead links and images on this website.
$ python deadseeker.py 'https://example.com/'
> 404 - https://www.iana.org/domains/example
Now it works with offline files
$ python deadseeker.py index.html
> FileNotFound - example.html
It's that simple. The website is crawled, and all href
and src
attributes are sent a request. Errors are reported.