Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2# srtools 

3# Copyright (C) 2019-2021 Andrej Radović <r.andrej@gmail.com> 

4# 

5# This program is free software: you can redistribute it and/or modify 

6# it under the terms of the GNU General Public License as published by 

7# the Free Software Foundation, either version 3 of the License, or 

8# (at your option) any later version. 

9# 

10# This program is distributed in the hope that it will be useful, 

11# but WITHOUT ANY WARRANTY; without even the implied warranty of 

12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

13# GNU General Public License for more details. 

14# 

15# You should have received a copy of the GNU General Public License 

16# along with this program. If not, see <http://www.gnu.org/licenses/>. 

17from ._version import __version__ 

18from .character_dictionaries import CYR_TO_LAT_DICT 

19from .character_dictionaries import CYR_TO_LAT_TTABLE 

20from .character_dictionaries import LAT_TO_CYR_DICT 

21from .character_dictionaries import LAT_TO_CYR_DIGRAPHS_DICT 

22from .character_dictionaries import LAT_TO_CYR_TTABLE 

23from .cli import main as cli 

24from .transliteration import cyrillic_to_latin 

25from .transliteration import latin_to_cyrillic 

26 

27 

28__all__ = ( 

29 "CYR_TO_LAT_DICT", 

30 "CYR_TO_LAT_TTABLE", 

31 "LAT_TO_CYR_DICT", 

32 "LAT_TO_CYR_DIGRAPHS_DICT", 

33 "LAT_TO_CYR_TTABLE", 

34 "__version__", 

35 "cyrillic_to_latin", 

36 "latin_to_cyrillic", 

37 "cli", 

38)