namdevel / ipgeo

Free IP Geolocation API and IP Location Lookup

Home Page:https://pypi.org/project/ipgeo-namdevel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IPGEO

Free IP Geolocation API and IP Location Lookup

Install


pip install ipgeo-namdevel

Usage (Install from PIP)

from namdevel.ipgeo import IPGeoLoc

if __name__ == "__main__":
    app = IPGeoLoc()
    app.setIp("8.8.8.8")
    isProxy = app.getResult().isProxy()
    print(isProxy)

Usage (Download Source)


from src.namdevel.ipgeo import IPGeoLoc

if __name__ == "__main__":
    app = IPGeoLoc()
    app.setIp("8.8.8.8")
    isProxy = app.getResult().isProxy()
    print(isProxy)

About

Free IP Geolocation API and IP Location Lookup

https://pypi.org/project/ipgeo-namdevel

License:MIT License


Languages

Language:Python 100.0%