Added code

This commit is contained in:
BarsTiger
2022-08-27 15:45:03 +03:00
commit 51f1d6d831
30 changed files with 1822 additions and 0 deletions

View File

@@ -0,0 +1 @@
from .config import charset

11
modules/config/config.py Normal file
View File

@@ -0,0 +1,11 @@
import json
try:
config = json.load(open('config.json', encoding='utf-8'))
except:
config = {
"charset": "abcdefghijklmnopqrstuvwxyz"
}
json.dump(config, open('config.json', 'w', encoding='utf-8'), indent=4)
charset = ''.join(sorted(list(set(' ' + config['charset']))))