I'm a security professional, passionate about Python programming and cyber security.
Nothing here yet.
No blogs yet.
As an additional information, a very simple example : In a terminal, run (from a folder where there are some files): python -m SimpleHTTPServer In another terminal, run this script to download all the resources: from pybots import HTTPBot with HTTPBot( "http://localhost:8000/" ) as bot: bot.get() for link in bot.soup.find_all( "a" ): bot.retrieve(link.attrs[ 'href' ])
This module is essentially a wrapper for common network mechanisms (HTTP, IRC, ...) aimed to program clients more conveniently (typically with very few lines). If you did not take a look at the documentation, you can find it here . For a few use cases, please check the examples provided with the documentation, especially this . If you still have questions, I can provide you some other simple examples.