Introduction to the builtwith module

The type of technology used to build a website will affect the way you track it. To identify this information, you can make use of tools such as Wappalyzer and Builtwith (https://builtwith.com). A useful tool to verify the type of technologies a website is built with the module is builtWith, which can be installed with:

pip install builtwith

This module has a method called parse, which is passed by the URL parameter and returns as a response the technologies used by the website. Here is an example:

>>> import builtwith
>>> builtwith.parse('http://example.webscraping.com')
{u'javascript-frameworks': [u'jQuery', u'Modernizr', u'jQuery UI'],
u'programming-languages': [u'Python'],
u'web-frameworks': [u'Web2py', u'Twitter Bootstrap'],
u'web-servers': [u'Nginx']}

The documentation is available at https://bitbucket.org/richardpenman/builtwith and the module is available on the pypi repository at https://pypi.org/project/builtwith/.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.137.220.92