Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Screen special characters
#2
(Apr-14-2020, 05:56 PM)ebolisa Wrote: Is there a simpler way to filter/convert them?
>>> from urllib.parse import unquote
>>> 
>>> password = 'mySSID&password=myPass%40home'
>>> unquote(password)
'mySSID&password=myPass@home'
Also look at this Thread here.
He has written a parser for header data kiss-headers
Reply


Messages In This Thread
Screen special characters - by ebolisa - Apr-14-2020, 05:56 PM
RE: Screen special characters - by snippsat - Apr-14-2020, 07:13 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020