Skip to main content

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

Project description

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.

Torip has been developed and tested using Python3.4

Installation

$ pip install torip

Available APIs

Torip supports the following APIs:

ip-api

It is also the default API.

from torip.locator import Locator
locator = Locator(api_name='ip-api')

or

from torip.locator import Locator
locator = Locator()  # default API

freegeoip.net

from torip.locator import Locator
locator = Locator(api_name='freegeoip')

Example

import tornado
from torip.locator import Locator
ip = ''  # IP or server name
@tornado.gen.coroutine
def function():
    try:
        locator = Locator()
        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.1.5.tar.gz (4.6 kB view hashes)

Uploaded Source

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