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
- Host: GitHub
- URL: https://github.com/namdevel/ipgeo
- Owner: namdevel
- License: mit
- Created: 2022-04-17T11:46:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-17T11:49:01.000Z (over 3 years ago)
- Last Synced: 2025-04-30T22:46:36.294Z (8 months ago)
- Topics: ip-geolocation, iplookup, proxy-detection, python, python-ipgeo, python-ipinfo
- Language: Python
- Homepage: https://pypi.org/project/ipgeo-namdevel
- Size: 5.86 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```