gip 0.2.0

A library and command-line frontend to check global IP address
Documentation
# gip


[![Build Status](https://travis-ci.org/dalance/gip.svg?branch=master)](https://travis-ci.org/dalance/gip)
[![Build status](https://ci.appveyor.com/api/projects/status/ffqn56t1w5v9cihy?svg=true)](https://ci.appveyor.com/project/dalance/gip)

**gip** is a command-line tool and Rust library to check global IP address.

## Install

Download from [release page](https://github.com/dalance/gip/releases/latest), and extract to the directory in PATH.

## Usage


```
gip                    // show global IP address by plane text.
gip -s                 // show global IP address by plane text without line break.
gip -j                 // show global IP address by JSON.                        ( ex. {"ip", "xxx.xxx.xxx.xxx"} )
gip -j --json-key key  // show global IP address by JSON with the specified key. ( ex. {"key", "xxx.xxx.xxx.xxx"} )
```

## Providers

Currently built-in service providers are the followings.

- [inet-ip.info]http://inet-ip.info
- [myexternalip.com]http://myexternalip.com
- [globalip.me]http://globalip.me
- [ipify.org]http://ipify.org
- [httpbin.org]http://httpbin.org

If you want to change providers, providers can be set by `$HOME/.gip.toml` like the following.

```
[[providers]]
    name    = "inet-ip.info"
    ptype   = "Plane"
    timeout = 1000
    url     = "http://inet-ip.info/ip"

[[providers]]
    name    = "httpbin.org"
    ptype   = "Json"
    timeout = 1000
    url     = "http://httpbin.org/ip"
    key     = ["origin"]
```

## Library


**gip** is provided as Rust library.

```Cargo.toml
gip = "*"
```

[Documentation](http://dalance.github.io/gip/gip/)