This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#coding:utf-8 | |
#author blog link - http://blog.csdn.net/stevendbaguo/article/details/37320705 thx | |
import sha | |
import string | |
BASE2 = '01' | |
BASE10 = '0123456789' | |
BASE16 = '0123456789ABCDEF' | |
BASE30 = '123456789ABCDEFGHJKLMNPQRTVWXY' | |
BASE36 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################ | |
# Wing IDE Professional 8.x KeyGen | |
# https://wingware.com/downloads | |
# for Python3.x | |
# uncomment these to get also support for Python2.7 | |
#from __future__ import print_function | |
# try: | |
# from future import standard_library |