-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.sample.py
41 lines (29 loc) · 926 Bytes
/
config.sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 25 16:06:13 2020
@author: Hrishikesh Terdalkar
"""
import os
###############################################################################
HOME_DIR = os.path.expanduser('~')
DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'data')
DHATU_FILE = os.path.join(DATA_DIR, 'dhatu.json')
SHABDA_FILE = os.path.join(DATA_DIR, 'shabda.json')
HELLWIG_SPLITTER_DIR = ''
HERITAGE_PLATFORM_DIR = ''
SUGGESTION_DIR = 'suggestions'
VERBOSE = True
DEBUG = False
###############################################################################
class TelegramConfig:
api_id = ''
api_hash = ''
bot_user = ''
bot_name = ''
bot_token = ''
use_custom_datacenter = True
dc_id = 5
dc_server_address = '91.108.56.158'
dc_port = 443
###############################################################################