Skip to main content

Library for Tornado web framework to locate IPs or server names.

Project description

torip

tests

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()

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.0.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

torip-0.2.0-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page