Library for Tornado web framework to locate IPs or server names.
Project description
torip
Python library for Tornado web framework to locate IPs or server names.
Torip will provide you information like country, city, zip code or the url of google maps.
Installation
$ pip install torip
Available APIs
Torip supports the following APIs:
[abstractapi] ABAPI
It is also the default API.
from torip.locator import Locator
locator = Locator(api_name='abstractapi', api_token=<Your API TOKEN>)
or
from torip.locator import Locator
locator = Locator(api_token=<Your API TOKEN>) # default API
[ip-api] IPAPI
from torip.locator import Locator
locator = Locator(api_name='ip-api')
Example
import tornado
from torip.locator import Locator
ip = '<IP ADDRESS>'
@tornado.gen.coroutine
def function():
try:
locator = Locator(api_token='<YOUR API TOKEN>')
result = yield locator.locate(ip)
print(result)
except Exception as e:
print(str(e))
finally:
ioloop.stop()
ioloop = tornado.ioloop.IOLoop.instance()
ioloop.add_callback(function)
ioloop.start()
Docs
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
torip-0.2.2.tar.gz
(5.6 kB
view hashes)
Built Distribution
torip-0.2.2-py3-none-any.whl
(6.4 kB
view hashes)