fenrir/src/fenrirscreenreader/core/punctuationData.py

23 lines
442 B
Python
Raw Normal View History

#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
import string
2019-08-26 12:54:31 -04:00
from collections import OrderedDict
punctuationData = {
'LEVELDICT':{
'none': '',
'some': '#-$~+*-/\\@',
'most': '.,:-$~ +*-/\\@!#%^&*()[]}{<>;',
'all': string.punctuation + ' §',
},
'PUNCTDICT':{
},
2019-08-26 12:54:31 -04:00
'CUSTOMDICT':OrderedDict(),
'EMOTICONDICT':OrderedDict(),
}