Go to file
Adam Rocska 1974c1744d Removed maxmind "branding" from repository wherever it was legally possible.
Signed-off-by: Adam Rocska <adam.rocska@adams.solutions>
2020-05-28 15:49:56 +02:00
.idea Introduced a few new protocols in hope that it'll make code more manageable. 2020-05-15 19:24:41 +02:00
Sources Removed maxmind "branding" from repository wherever it was legally possible. 2020-05-28 15:49:56 +02:00
Tests Removed maxmind "branding" from repository wherever it was legally possible. 2020-05-28 15:49:56 +02:00
.gitignore Initial Commit. 2020-04-27 15:25:09 +02:00
.gitmodules Removed submodules, and doing stuff. 2020-04-28 11:08:31 +02:00
LICENSE Added a license. Yea, GNU GPL seems to be a good enough idea here. 2020-04-27 21:46:34 +02:00
Package.swift Removed maxmind "branding" from repository wherever it was legally possible. 2020-05-28 15:49:56 +02:00
README.md I figured out what the problem was. I was an idiot in many ways : 2020-04-27 21:27:28 +02:00

README.md

GeoIP2-swift

A decoupled Swift wrapper for MaxMind's GeoIP database's C Library.

Inspiration, and initial state of repository from lexrus's MMDB-Swift repository.

Disclaimers

  1. I'm no C guru.
  2. I'm no Swift guru.
  3. I have no idea what I'm doing.
  4. For my purposes the lib' works as is, but be super cautious because of items 1-3.

Version Infos

1. libmaxminddb : 1.3.2

The current latest version is 1.4.2, however I got MMDB_INVALID_DATA_ERRORs, and other issues for the current latest GeoLite2 database.
The earliest version with which I could get GeoLite2 working was 1.3.2

2. Swift & Swift Package Manager : 5.0.*

Currently that's the newest version which is supported by JetBrains's CLion, our IDE of choice for all sorts of cool stuff.
The library is supposed to behave properly with newer versions.

Usage

I won't bother providing a usage doc' just yet, because the API will 100% change.
Right now I'm working on hammering it into a production environment, so eventually it'll become stable, and I will bother providing a proper API documentation, and a proper 1.0.0 release will be made.

For now THIS IS ALL WORK IN PROGRESS IN MASTER by design.

How To Clone 🙂

git clone --recurse-submodules instead of the standard git clone, since libmaxminddb is introduced as a git submodule.