Skip to content

claymation/python-builtwith

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ccbafe8 · Apr 12, 2020

History

30 Commits
Apr 12, 2020
Mar 17, 2013
Mar 18, 2013
Apr 12, 2020
Apr 12, 2020
Apr 12, 2020
May 21, 2015

Repository files navigation

python-builtwith

Python package

API key

Get your BuiltWith API key here: https://api.builtwith.com/free-api
SignUp is necessary, one request per second is free of charge.

Versions

BuiltWith API versions 1 and 2 client.

Examples

Import and initialize BuiltWith class

>>> from builtwith import BuiltWith
>>> bw = BuiltWith(YOUR_API_KEY)

Simple example

>>> bw.lookup('example.com')
{
    'Domain': 'example.com',
    'FullUrl': 'example.com',
    'ProfileUrl': 'http://builtwith.com?example.com',
    'Technologies': [...],
    'Title': ''
}

Advanced example

>>> bw = BuiltWith(YOUR_API_KEY, api_version=2)
>>> example_info = bw.lookup('example.com')
>>> example_info.available_urls()
[(u'example.com', u'', u'')]
>>>
>>> domain_technologies = example_info.get_technologies_by_url(domain="example.com", subdomain="", path="")
>>> domain_technologies.list_technologies()
[u'Viewport Meta', u'CentOS', u'Cascading Style Sheets', u'Javascript', u'SEO_TITLE', u'SEO_H1',
 u'XHTML Transitional', u'HTML5 DocType', u'Apache', u'Prototype', u'HTML 4.01 Transitional DTD', u'UTF-8']
>>>
>>> domain_technologies.get_technology_info("Prototype")
{u'Name': u'Prototype', u'FirstDetected': datetime.datetime(2011, 1, 31, 5, 0), u'Tag': u'javascript',
 u'Link': u'http://www.prototypejs.org', u'LastDetected': datetime.datetime(2012, 11, 1, 6, 0),
 u'Description': u'Prototype is a javascript framework which aims to ease development of dynamic web applications.'}

About

BuiltWith API client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages