bin/base36-to-uuid @ 2b6e7849cfce

Make urlendecode into real scripts
author Steve Losh <steve@stevelosh.com>
date Tue, 09 Oct 2018 10:02:46 -0700
parents e6f6389e598f
children (none)
#!/usr/bin/env python

import sys, uuid

s = ''
if len(sys.argv) != 2 or sys.argv[1] == '-':
    s = sys.stdin.read().strip()
else:
    s = sys.argv[1]

print uuid.UUID(hex(int(s, 36))[2:-1].zfill(32))