Giter Club home page Giter Club logo

Comments (6)

GrofGraf avatar GrofGraf commented on May 23, 2024 1

Thank you for the response,
Take your time when you can, I will make a workaround based on your response in the meanwhile.

Thanks again for supporting this project and keep up the good work.

Best regards.

from mrz.

Arg0s1080 avatar Arg0s1080 commented on May 23, 2024

Hi!

I don't know if I understand you..

IIf I remember correctly, all countries codes have 3 letters with two exceptions: United Kingdom "GB" and Germany "D" and both work correctly

For example:

from mrz.checker.td1 import TD1CodeChecker

print(TD1CodeChecker("ID<GB0000000000000000000<<<<<<\n"
                     "8001014F2501017<GB<<<<<<<<<<<4\n"
                     "SAMPLE<SAMPLE<<SAMPLE<SAMPLE<<"))

print(TD1CodeChecker("ID<<D0000000000000000000<<<<<<\n"
                     "8001014F2501017<<D<<<<<<<<<<<4\n"
                     "SAMPLE<SAMPLE<<SAMPLE<SAMPLE<<"))

Output

True
True

Can you give an example?

Thanks

from mrz.

GrofGraf avatar GrofGraf commented on May 23, 2024

Thank you for a quick response. I get an error with Slovenian ID, that has a two letter country code SI. Slovenian passports work as expected as they have three letter country code SVN.

Slovenian ID

from mrz.

Arg0s1080 avatar Arg0s1080 commented on May 23, 2024

Sorry.. I read your message days ago but i forgot to reply to you.

I was planning to give you the standard answer. "ICAO specifications says": All countries use 3-letter codes, so "this is outside the scope of the project. Therefore it's a special case" and then I would quote specs.

But reviewing the specs i read:

The following are the two- and three-letter codes for entities specified and regularly updated in [ISO 3166-1], with
extensions for certain States and organizations being identified by an asterisk. The current version of the codes may be
obtained from the [ISO 3166] maintenance agency - [ISO 3166/MA], ISO’s focal point for country codes.

Specs are specs, so it's within the scope of this project.

The good news is that I envisioned something for something similar to your request:

def country(string, dictionary=countries.english):
    if check_string(string) and string.upper() in dictionary.values():
        return string.upper().ljust(3, "<")
    elif full_capitalize(string) in dictionary.keys():
        return dictionary[full_capitalize(string)].ljust(3, "<")
    else:
        raise CountryError(cause=string)

(See dictionary kwarg)

Bad news is that I now have very little free time. However, all this it's pending.

As this is something that requires a lot of changes, I promise to provide a temporary special case in a few days (a special case for Slovenian TD1s)

BR

from mrz.

mjl avatar mjl commented on May 23, 2024

I just stumbled over the same issue (on the checker side).

The quick and dirty fix is to add

"Slovenia2": "SI",

to base/countries.py.

However, this might be a bit of a moving target, so I'd suggest to ultimatively not flag unrecognised countries as errors at all but to just pass them through. Or perhaps add a verify_country=True to the checker to disable the country check if you don't really need it?

from mrz.

mjl avatar mjl commented on May 23, 2024

The even easier quick hack is to add

# Patch up MRZ module for special cases
from mrz.base.countries import english

english["Slovenia2"] = "SI"

to you application, that way one doesn't have to touch the original mrz distribution files.

from mrz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.