Skip to content

Instantly share code, notes, and snippets.

@medicalwei
Created July 4, 2015 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save medicalwei/4b2c04afd79073353eca to your computer and use it in GitHub Desktop.
Save medicalwei/4b2c04afd79073353eca to your computer and use it in GitHub Desktop.
Pebble Font Glyph List Generator
#!/usr/bin/python3
import fileinput
print('{"codepoints":[')
print(",".join(map(lambda x: str(ord(x)), fileinput.input().next().decode('utf-8'))))
print("]}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment