iplocation 0.0.1

Location data based on your public IP address
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# iplocation

Simple Rust library that uses [http://ip-api.com/json](http://ip-api.com/json)
to gain location data based on your public IP address.

## Example

```rust
use iplocation;

fn main() {
    let result = iplocation::get().unwrap();

    println!("{:?}", result);
}
```