Metadata-Version: 2.1
Name: python-geoacumen
Version: 2022.9.25
Summary: Library to access/distribute Geoacumen IP databases
Home-page: UNKNOWN
Author: Kevin Chung
Author-email: kchung@nyu.edu
License: Apache 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: maxminddb (==1.5.4)

# python-geoacumen

## Installation

```
pip install python-geoacumen
```

## Usage

```
>>> import geoacumen
>>> import maxminddb
>>> reader = maxminddb.open_database(geoacumen.db_path)
>>> reader.get("1.1.1.1")
{'country': {'iso_code': 'CN'}}
>>>
```

