Skip to content

namdevel/ipgeo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)