Skip to content

Instantly share code, notes, and snippets.

View bassitone's full-sized avatar

Jessica Herrera bassitone

View GitHub Profile

Keybase proof

I hereby claim:

  • I am bassitone on github.
  • I am bassitone (https://keybase.io/bassitone) on keybase.
  • I have a public key whose fingerprint is 4DD4 F305 98DF 856F 8A2C 6B4D E002 9917 693D BEA6

To claim this, I am signing this object:

@bassitone
bassitone / converter.py
Created July 4, 2016 20:38
Sample converter code I'm working on - unicode (or otherwise) symbols to plain English. Python 3.x
def main():
convert_table_example = {"$": "dollar",
"%": "percent",
"@": "at",
"alt": "alt",
".": "period",
"\\": "backslash"
" ": "space",
":": "colon"}
# Convert the above as needed