End Goal: To compare a whois output to the users computer date, to see if a website was made within a month.
import whois
from datetime import datetime
w = whois.whois('www.google.com')
w = w.creation_date
print (w)
This is where I need your help, I want to compare that output to the users computer date. How can I do that.....