earthsnake/earthsnake/types.py

8 lines
179 B
Python
Raw Normal View History

2022-04-11 13:45:45 +00:00
"""Generic types and definitions
"""
ALPHA_LOWER = 'abcdefghijklmnopqrstuvwxyz'
DIGIT = '0123456789'
B32_CHAR = ALPHA_LOWER + '234567'
ALPHA_LOWER_OR_DIGIT = ALPHA_LOWER + DIGIT