Detecting blog or forum software using python?
Is there a way beside checking for known signatures in the site co开发者_高级运维ntent to find out what kind of software is the website running e.g vbbuliten,WP etc, preferably python.
re_generator = re.compile('<meta name="generator" content="(.*?)" /?>', re.IGNORECASE)
This might be helpful
Some sites will set the 'generator' meta-tag in the html head.
精彩评论