An open API service indexing awesome lists of open source software.

https://github.com/namdevel/ipgeo

Free IP Geolocation API and IP Location Lookup
https://github.com/namdevel/ipgeo

ip-geolocation iplookup proxy-detection python python-ipgeo python-ipinfo

Last synced: 6 months ago
JSON representation

Free IP Geolocation API and IP Location Lookup

Awesome Lists containing this project

README

          

# IPGEO
Free IP Geolocation API and IP Location Lookup

### Install
---------
```python
pip install ipgeo-namdevel
```

Usage (Install from PIP)
---------
```python
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)
---------
```python
from src.namdevel.ipgeo import IPGeoLoc

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

```