You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>>importsegno>>>qr=segno.make('http://www.example.org/bla/bla/')
>>>qr.show() # Does not scan>>>qr.designator'3-H'>>>qr=segno.make('http://www.example.org/bla/bla/', boost_error=False)
>>>qr.show() # Works!>>>qr.designator'3-M'>>># Setting the error level to 'H' works, too>>>qr=segno.make('http://www.example.org/bla/bla/', error='h')
>>>qr.show() # Works!>>>qr.designator'4-H'>>># boost_error should choose error level "Q" which does not change the QR Code version>>>qr=segno.make('http://www.example.org/bla/bla/', boost_error=False, error='q')
>>>qr.show() # Works!>>>qr.designator'3-Q'
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: