We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
>>> import segno >>> qr = segno.make('') >>> qr.version 'M3' >>> qr.mode 'byte'
Shouldn't we expect version "M1" in "alphanumeric" mode?
The text was updated successfully, but these errors were encountered:
Take care:
>>> import segno >>> qr1 = segno.make('') >>> qr2 = qr.make(0) >>> qr1.martrix == qr2.matrix False >>> qr1.version == qr2.version True >>> qr1.error is qr2.error True >>> qr1.mode != qr2.mode True
Sorry, something went wrong.
Byte mode seems to be correct:
[...] Alphanumeric mode encodes data from a set of 45 characters, i.e. 10 numeric digits (0 - 9) (byte values 30HEX to 39HEX), 26 alphabetic characters (A - Z) (byte values 41HEX to 5AHEX) , and 9 symbols (SP, $, %, *, +, -, ., /, :) (byte values 20HEX, 24HEX, 25HEX, 2AHEX, 2BHEX, 2D to 2FHEX, 3AHEX respectively). [...]
Updated issue #18 test cases
72a3d4f
f622293
No branches or pull requests
Shouldn't we expect version "M1" in "alphanumeric" mode?
The text was updated successfully, but these errors were encountered: