Created
April 23, 2018 12:12
-
-
Save jiaqi-yin/f548a0db94d08b3a4aee40575def56da to your computer and use it in GitHub Desktop.
Web profiler using python modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find a website registrar | |
>>> import whois | |
>>> print whois.whois('https://www.drupal.org') | |
# Find what a website is built with | |
>>> import builtwith | |
>>> builtwith.parse('https://www.drupal.org/') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#python3 #profiler