lincolnloop / python-qrcode

Python QR Code image generator
https://pypi.python.org/pypi/qrcode
Other
4.39k stars 673 forks source link

Process Tilde? (Special Characters like "Horizontal TAB") #319

Open seanpmiller84 opened 1 year ago

seanpmiller84 commented 1 year ago

Apologies if I am approaching this problem from the wrong angle - is there any way to create codes that process "Tilde" (~) symbols? In other words, utilize the ~d009 code to process the ASCII character for Horizontal TAB into the code between words?

seanpmiller84 commented 1 year ago

I should have realized sooner, a simple f-string with the \t tab character did the trick. Posting in case anyone else comes looking for the same thing. Thank you for this wonderful tool!