To discover the country from the IP I'm looking into options. On a fast look I found:
geoip2. A go library that uses maxminddb and is used by many projects and looks maintained.
snowflake implementation. The snowflake broker does implement it's own parser for the geoip DB provided by tor, that AFAIK is the ipfire (but the debian package's copyright claims to be something from webhosting.info that seems to be an expired domain).
bridgedb geo.py. BridgeDB has it's own parser as well, but instead of using the tor's geoip DB uses maxminddb (from the geoip-database debian package).
I'm wondering what of the two DBs are better if ipfire or maxminddb, why every project uses it's own implementation.
I guess the two options I see are to export the snowflake implementation to our own tor-geoip parser library to be used by different projects or to use geoip2 library.
It looks like maxmind has changed the license recently and forced tor to find other options. I think the best will be to use the tor's provided geoip db, as tpo will keep it up to date and maintain the format between providers.
As a first step I'm going to copy code from snowflake to keep working on this. But I created a ticket to explore the option of a shared library (team#32 (closed))