Capstone Project Notes
Fake News
Examples
Project
Workflow
Last updated
Fake News
Last updated
import geoip2.database
import socket
ip = socket.gethostbyname('nike.com')
reader = geoip2.database.Reader('GeoLite2-Country_20190305/GeoLite2-Country.mmdb')
response = reader.country(ip)
response.country.iso_code # Results in 'US'