This API provides access to Sypex Geo 2.2 databases. The databases available from https://sypexgeo.net/
Project description
Description
pysxgeo is an API that provides access to Sypex Geo (2.2) databases (country and city). The databases provides an information about geolocation by ip-address. For information about databases please visit sypexgeo.net.
Requirements
Python 3.x
Sypex Geo City (or Country) database
Installation
$ pip install pysxgeo
Usage
Some examples:
>>> from pysxgeo import sxgeo
>>>
>>> ip = '77.236.97.247'
>>> db = '/path/to/db' # City or Country
>>> # AVAILABLE MODES: SXGEO_FILE, SXGEO_MEMORY, SXGEO_BATCH
>>> info = sxgeo.SxGeo(db_file=db, mode=sxgeo.SXGEO_BATCH)
>>> info.get_city(ip, full=True)
{'country': {'id': 56, 'lon': 10.5, 'lat': 51.5,
'name_en': 'Germany', 'iso': 'DE', 'name_ru': 'Германия'},
'region': {'id': 2861876, 'iso': 'DE-NW',
'name_en': 'Land Nordrhein-Westfalen',
'name_ru': 'Северный Рейн-Вестфалия'},
'city': {'id': 2831105, 'lon': 6.36667, 'name_ru': 'Sonsbeck',
'name_en': 'Sonsbeck', 'lat': 51.61667}}
>>> info.get_country(ip)
'DE'
>>> info.get_country_id(ip)
56
>>> # Quick usage. The answer depends of your database choice.
>>> info.get(ip)
{'city': {'name_en': 'Sonsbeck', 'lon': 6.36667,
'name_ru': 'Sonsbeck', 'id': 2831105, 'lat': 51.61667},
'country': {'iso': 'DE', 'id': 56}},
>>> # Get coordinates tuple(latitude, longitude)
>>> info.get_coords() # For the last ip
(51.61667, 6.36667)
>>> info.get_coords(ip) # For the new ip
(51.61667, 6.36667)
>>> # Get db info:
>>> info.about()
Notes
Processing of the DB with charset ‘utf-8’ is faster than processing DB with charset ‘cp1251’.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pysxgeo-0.0.3-py3-none-any.whl.
File metadata
- Download URL: pysxgeo-0.0.3-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e3a95668fb2088d8a4e67687bdc81fe6fe73f80f22f64776319fff97741792a
|
|
| MD5 |
d9b7f2c069c32bfb91512ca045128ecd
|
|
| BLAKE2b-256 |
f05cab212a83fee8ede408d3e48abedd9f5757b4fd1689576e2b864404385998
|