try:
clr.AddReferenceByPartialName("GeoIP")
import GeoIP
from GeoIP import GeoIP as RealGeoIP
except:
raise ImportError("Failed to reference the GeoIP.dll, Download from: http://fougerite.com/resources/geoip.135/")
Throws ImportError, Removed the try/except and it says its a NoneType.
I...