• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H20-Aug-2020-

test-data/H20-Aug-2020-

.gitignoreH A D20-Aug-202027

.gitmodulesH A D20-Aug-202091

.golangci.tomlH A D20-Aug-2020968

LICENSEH A D20-Aug-2020772

README.mdH A D20-Aug-2020995

decoder.goH A D20-Aug-202020.5 KiB

decoder_test.goH A D20-Aug-20206.3 KiB

deserializer.goH A D20-Aug-2020951

deserializer.go deserializer_test.goH A D20-Aug-20202.3 KiB

errors.goH A D20-Aug-20201.1 KiB

example_test.goH A D20-Aug-20203.1 KiB

go.modH A D20-Aug-2020154

go.sumH A D20-Aug-20201.3 KiB

mmap_unix.goH A D20-Aug-2020277

mmap_windows.goH A D20-Aug-20201.8 KiB

node.goH A D20-Aug-20201.4 KiB

reader.goH A D20-Aug-20209.9 KiB

reader_appengine.goH A D20-Aug-2020873

reader_other.goH A D20-Aug-20201.4 KiB

reader_test.goH A D20-Aug-202024 KiB

traverse.goH A D20-Aug-20205.7 KiB

traverse_test.goH A D20-Aug-20206 KiB

verifier.goH A D20-Aug-20203.9 KiB

verifier_test.goH A D20-Aug-20201.5 KiB

README.md

1# MaxMind DB Reader for Go #
2
3[![GoDoc](https://godoc.org/github.com/oschwald/maxminddb-golang?status.svg)](https://godoc.org/github.com/oschwald/maxminddb-golang)
4
5This is a Go reader for the MaxMind DB format. Although this can be used to
6read [GeoLite2](http://dev.maxmind.com/geoip/geoip2/geolite2/) and
7[GeoIP2](https://www.maxmind.com/en/geoip2-databases) databases,
8[geoip2](https://github.com/oschwald/geoip2-golang) provides a higher-level
9API for doing so.
10
11This is not an official MaxMind API.
12
13## Installation ##
14
15```
16go get github.com/oschwald/maxminddb-golang
17```
18
19## Usage ##
20
21[See GoDoc](http://godoc.org/github.com/oschwald/maxminddb-golang) for
22documentation and examples.
23
24## Examples ##
25
26See [GoDoc](http://godoc.org/github.com/oschwald/maxminddb-golang) or
27`example_test.go` for examples.
28
29## Contributing ##
30
31Contributions welcome! Please fork the repository and open a pull request
32with your changes.
33
34## License ##
35
36This is free software, licensed under the ISC License.
37