|
| | _strip_comment_tags (MutableSequence[str] comments, Iterable[str] tags) |
| |
|
bool | default_directory_filter (str|os.PathLike[str] dirpath) |
| |
| Generator[_FileExtractionResult, None, None] | extract_from_dir (str|os.PathLike[str]|None dirname=None, Iterable[tuple[str, str]] method_map=DEFAULT_MAPPING, SupportsItems[str, dict[str, Any]]|None options_map=None, Mapping[str, _Keyword] keywords=DEFAULT_KEYWORDS, Collection[str] comment_tags=(), Callable[[str, str, dict[str, Any]], object]|None callback=None, bool strip_comment_tags=False, Callable[[str], bool]|None directory_filter=None) |
| |
| Generator[_FileExtractionResult, None, None] | check_and_call_extract_file (str|os.PathLike[str] filepath, Iterable[tuple[str, str]] method_map, SupportsItems[str, dict[str, Any]] options_map, Callable[[str, str, dict[str, Any]], object]|None callback, Mapping[str, _Keyword] keywords, Collection[str] comment_tags, bool strip_comment_tags, str|os.PathLike[str]|None dirpath=None) |
| |
| list[_ExtractionResult] | extract_from_file (_ExtractionMethod method, str|os.PathLike[str] filename, Mapping[str, _Keyword] keywords=DEFAULT_KEYWORDS, Collection[str] comment_tags=(), Mapping[str, Any]|None options=None, bool strip_comment_tags=False) |
| |
|
| _match_messages_against_spec (int lineno, list[str|None] messages, list[str] comments, _FileObj fileobj, tuple[int|tuple[int, str],...] spec) |
| |
|
| _find_extractor (str name) |
| |
| Generator[_ExtractionResult, None, None] | extract (_ExtractionMethod method, _FileObj fileobj, Mapping[str, _Keyword] keywords=DEFAULT_KEYWORDS, Collection[str] comment_tags=(), Mapping[str, Any]|None options=None, bool strip_comment_tags=False) |
| |
| list[_ExtractionResult] | extract_nothing (_FileObj fileobj, Mapping[str, _Keyword] keywords, Collection[str] comment_tags, Mapping[str, Any] options) |
| |
| Generator[_ExtractionResult, None, None] | extract_python (IO[bytes] fileobj, Mapping[str, _Keyword] keywords, Collection[str] comment_tags, _PyOptions options) |
| |
|
str|None | _parse_python_string (str value, str encoding, int future_flags) |
| |
| Generator[_ExtractionResult, None, None] | extract_javascript (_FileObj fileobj, Mapping[str, _Keyword] keywords, Collection[str] comment_tags, _JSOptions options, int lineno=1) |
| |
| Generator[_ExtractionResult, None, None] | parse_template_string (str template_string, Mapping[str, _Keyword] keywords, Collection[str] comment_tags, _JSOptions options, int lineno=1) |
| |
|
|
| TypeAlias |
| |
|
TypeAlias | _Keyword = dict[int | None, _SimpleKeyword] | _SimpleKeyword |
| |
|
TypeAlias | _FileExtractionResult = tuple[str, int, str | tuple[str, ...], list[str], str | None] |
| |
|
TypeAlias | _ExtractionResult = tuple[int, str | tuple[str, ...], list[str], str | None] |
| |
| TypeAlias | _CallableExtractionMethod |
| |
|
TypeAlias | _ExtractionMethod = _CallableExtractionMethod | str |
| |
|
Final | GROUP_NAME = 'babel.extractors' |
| |
| dict | DEFAULT_KEYWORDS |
| |
|
list | DEFAULT_MAPPING = [('**.py', 'python')] |
| |
|
| FSTRING_START = getattr(tokenize, "FSTRING_START", None) |
| |
|
| FSTRING_MIDDLE = getattr(tokenize, "FSTRING_MIDDLE", None) |
| |
|
| FSTRING_END = getattr(tokenize, "FSTRING_END", None) |
| |
| dict | _BUILTIN_EXTRACTORS |
| |
babel.messages.extract
~~~~~~~~~~~~~~~~~~~~~~
Basic infrastructure for extracting localizable messages from source files.
This module defines an extensible system for collecting localizable message
strings from a variety of sources. A native extractor for Python source
files is builtin, extractors for other sources can be added using very
simple plugins.
The main entry points into the extraction functionality are the functions
`extract_from_dir` and `extract_from_file`.
:copyright: (c) 2013-2025 by the Babel Team.
:license: BSD, see LICENSE for more details.
| Generator[_FileExtractionResult, None, None] babel.messages.extract.check_and_call_extract_file |
( |
str | os.PathLike[str] |
filepath, |
|
|
Iterable[tuple[str, str]] |
method_map, |
|
|
SupportsItems[str, dict[str, Any]] |
options_map, |
|
|
Callable[[str, str, dict[str, Any]], object] | None |
callback, |
|
|
Mapping[str, _Keyword] |
keywords, |
|
|
Collection[str] |
comment_tags, |
|
|
bool |
strip_comment_tags, |
|
|
str | os.PathLike[str] | None |
dirpath = None |
|
) |
| |
Checks if the given file matches an extraction method mapping, and if so, calls extract_from_file.
Note that the extraction method mappings are based relative to dirpath.
So, given an absolute path to a file `filepath`, we want to check using
just the relative path from `dirpath` to `filepath`.
Yields 5-tuples (filename, lineno, messages, comments, context).
:param filepath: An absolute path to a file that exists.
:param method_map: a list of ``(pattern, method)`` tuples that maps of
extraction method names to extended glob patterns
:param options_map: a dictionary of additional options (optional)
:param callback: a function that is called for every file that message are
extracted from, just before the extraction itself is
performed; the function is passed the filename, the name
of the extraction method and and the options dictionary as
positional arguments, in that order
:param keywords: a dictionary mapping keywords (i.e. names of functions
that should be recognized as translation functions) to
tuples that specify which of their arguments contain
localizable strings
:param comment_tags: a list of tags of translator comments to search for
and include in the results
:param strip_comment_tags: a flag that if set to `True` causes all comment
tags to be removed from the collected comments.
:param dirpath: the path to the directory to extract messages from.
:return: iterable of 5-tuples (filename, lineno, messages, comments, context)
:rtype: Iterable[tuple[str, int, str|tuple[str], list[str], str|None]
| Generator[_ExtractionResult, None, None] babel.messages.extract.extract |
( |
_ExtractionMethod |
method, |
|
|
_FileObj |
fileobj, |
|
|
Mapping[str, _Keyword] |
keywords = DEFAULT_KEYWORDS, |
|
|
Collection[str] |
comment_tags = (), |
|
|
Mapping[str, Any] | None |
options = None, |
|
|
bool |
strip_comment_tags = False |
|
) |
| |
Extract messages from the given file-like object using the specified
extraction method.
This function returns tuples of the form ``(lineno, message, comments, context)``.
The implementation dispatches the actual extraction to plugins, based on the
value of the ``method`` parameter.
>>> source = b'''# foo module
... def run(argv):
... print(_('Hello, world!'))
... '''
>>> from io import BytesIO
>>> for message in extract('python', BytesIO(source)):
... print(message)
(3, u'Hello, world!', [], None)
:param method: an extraction method (a callable), or
a string specifying the extraction method (.e.g. "python");
if this is a simple name, the extraction function will be
looked up by entry point; if it is an explicit reference
to a function (of the form ``package.module:funcname`` or
``package.module.funcname``), the corresponding function
will be imported and used
:param fileobj: the file-like object the messages should be extracted from
:param keywords: a dictionary mapping keywords (i.e. names of functions
that should be recognized as translation functions) to
tuples that specify which of their arguments contain
localizable strings
:param comment_tags: a list of translator tags to search for and include
in the results
:param options: a dictionary of additional options (optional)
:param strip_comment_tags: a flag that if set to `True` causes all comment
tags to be removed from the collected comments.
:raise ValueError: if the extraction method is not registered
:returns: iterable of tuples of the form ``(lineno, message, comments, context)``
:rtype: Iterable[tuple[int, str|tuple[str], list[str], str|None]
| Generator[_FileExtractionResult, None, None] babel.messages.extract.extract_from_dir |
( |
str | os.PathLike[str] | None |
dirname = None, |
|
|
Iterable[tuple[str, str]] |
method_map = DEFAULT_MAPPING, |
|
|
SupportsItems[str, dict[str, Any]] | None |
options_map = None, |
|
|
Mapping[str, _Keyword] |
keywords = DEFAULT_KEYWORDS, |
|
|
Collection[str] |
comment_tags = (), |
|
|
Callable[[str, str, dict[str, Any]], object] | None |
callback = None, |
|
|
bool |
strip_comment_tags = False, |
|
|
Callable[[str], bool] | None |
directory_filter = None |
|
) |
| |
Extract messages from any source files found in the given directory.
This function generates tuples of the form ``(filename, lineno, message,
comments, context)``.
Which extraction method is used per file is determined by the `method_map`
parameter, which maps extended glob patterns to extraction method names.
For example, the following is the default mapping:
>>> method_map = [
... ('**.py', 'python')
... ]
This basically says that files with the filename extension ".py" at any
level inside the directory should be processed by the "python" extraction
method. Files that don't match any of the mapping patterns are ignored. See
the documentation of the `pathmatch` function for details on the pattern
syntax.
The following extended mapping would also use the "genshi" extraction
method on any file in "templates" subdirectory:
>>> method_map = [
... ('**/templates/**.*', 'genshi'),
... ('**.py', 'python')
... ]
The dictionary provided by the optional `options_map` parameter augments
these mappings. It uses extended glob patterns as keys, and the values are
dictionaries mapping options names to option values (both strings).
The glob patterns of the `options_map` do not necessarily need to be the
same as those used in the method mapping. For example, while all files in
the ``templates`` folders in an application may be Genshi applications, the
options for those files may differ based on extension:
>>> options_map = {
... '**/templates/**.txt': {
... 'template_class': 'genshi.template:TextTemplate',
... 'encoding': 'latin-1'
... },
... '**/templates/**.html': {
... 'include_attrs': ''
... }
... }
:param dirname: the path to the directory to extract messages from. If
not given the current working directory is used.
:param method_map: a list of ``(pattern, method)`` tuples that maps of
extraction method names to extended glob patterns
:param options_map: a dictionary of additional options (optional)
:param keywords: a dictionary mapping keywords (i.e. names of functions
that should be recognized as translation functions) to
tuples that specify which of their arguments contain
localizable strings
:param comment_tags: a list of tags of translator comments to search for
and include in the results
:param callback: a function that is called for every file that message are
extracted from, just before the extraction itself is
performed; the function is passed the filename, the name
of the extraction method and and the options dictionary as
positional arguments, in that order
:param strip_comment_tags: a flag that if set to `True` causes all comment
tags to be removed from the collected comments.
:param directory_filter: a callback to determine whether a directory should
be recursed into. Receives the full directory path;
should return True if the directory is valid.
:see: `pathmatch`