Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/babel/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:39 +0000

1""" 

2 babel 

3 ~~~~~ 

4 

5 Integrated collection of utilities that assist in internationalizing and 

6 localizing applications. 

7 

8 This package is basically composed of two major parts: 

9 

10 * tools to build and work with ``gettext`` message catalogs 

11 * a Python interface to the CLDR (Common Locale Data Repository), providing 

12 access to various locale display names, localized number and date 

13 formatting, etc. 

14 

15 :copyright: (c) 2013-2023 by the Babel Team. 

16 :license: BSD, see LICENSE for more details. 

17""" 

18 

19from babel.core import ( 

20 Locale, 

21 UnknownLocaleError, 

22 default_locale, 

23 get_locale_identifier, 

24 negotiate_locale, 

25 parse_locale, 

26) 

27 

28__version__ = '2.12.1' 

29 

30__all__ = [ 

31 'Locale', 

32 'UnknownLocaleError', 

33 'default_locale', 

34 'get_locale_identifier', 

35 'negotiate_locale', 

36 'parse_locale', 

37]