__init__.py 714 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. """
  3. babel
  4. ~~~~~
  5. Integrated collection of utilities that assist in internationalizing and
  6. localizing applications.
  7. This package is basically composed of two major parts:
  8. * tools to build and work with ``gettext`` message catalogs
  9. * a Python interface to the CLDR (Common Locale Data Repository), providing
  10. access to various locale display names, localized number and date
  11. formatting, etc.
  12. :copyright: (c) 2013-2021 by the Babel Team.
  13. :license: BSD, see LICENSE for more details.
  14. """
  15. from babel.core import UnknownLocaleError, Locale, default_locale, \
  16. negotiate_locale, parse_locale, get_locale_identifier
  17. __version__ = '2.9.1'