Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong checksum for ISSN #238

Open
mezzelfo opened this issue Nov 27, 2024 · 0 comments
Open

Wrong checksum for ISSN #238

mezzelfo opened this issue Nov 27, 2024 · 0 comments

Comments

@mezzelfo
Copy link

I think the current implementation of _calculate_checksum in InternationalStandardSerialNumber is wrong. Indeed, the tmp variable sometimes assume the value of "11", while should probably be "0", making the checksum two digits long!

This is a minimum replicating example:

from barcode import ISSN
print(ISSN("6727893").issn) # output = 672789311 when should be 67278930

Simply adding and extra %11 operation at the end of the tmp computation should solve the issue:

def _calculate_checksum(self):
    tmp = (
        11
        - sum(x * int(y) for x, y in enumerate(reversed(self.issn[:7]), start=2))
        % 11
    ) % 11
    if tmp == 10:
        return "X"

    return tmp

For reference:

def _calculate_checksum(self):

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant