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
.
Unknown Field: copyright | |
| |
Unknown Field: license | |
BSD, see LICENSE for more details. |
Function | extract |
Extract messages from the given file-like object using the specified extraction method. |
Function | extract_from_dir |
Extract messages from any source files found in the given directory. |
Function | extract_from_file |
Extract messages from a specific file. |
Function | extract_javascript |
Extract messages from JavaScript source code. |
Function | extract_nothing |
Pseudo extractor that does not actually extract anything, but simply returns an empty list. |
Function | extract_python |
Extract messages from Python source code. |
Constant | DEFAULT_KEYWORDS |
Undocumented |
Constant | DEFAULT_MAPPING |
Undocumented |
Constant | GROUP_NAME |
Undocumented |
Variable | empty_msgid_warning |
Undocumented |
Function | _strip_comment_tags |
Helper function for extract that strips comment tags from strings in a list of comment lines. This functions operates in-place. |
Function | check_and_call_extract_file |
Checks if the given file matches an extraction method mapping, and if so, calls extract_from_file. |
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 babel._compat import BytesIO >>> for message in extract('python', BytesIO(source)): ... print(message) (3, u'Hello, world!', [], None)
Parameters | |
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 |
fileobj | the file-like object the messages should be extracted from |
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 |
comment_tags | a list of translator tags to search for and include in the results |
options | a dictionary of additional options (optional) |
strip_comment_tags | a flag that if set to True causes all comment
tags to be removed from the collected comments. |
Returns | |
Iterable[tuple[int, str|tuple[str], list[str], str|None] | iterable of tuples of the form (lineno, message, comments, context) |
Raises | |
ValueError | if the extraction method is not registered |
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': '' ... } ... }
Parameters | |
dirname | the path to the directory to extract messages from. If not given the current working directory is used. |
method_map | a list of (pattern, method) tuples that maps of extraction method names to extended glob patterns |
options_map | a dictionary of additional options (optional) |
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 |
comment_tags | a list of tags of translator comments to search for and include in the results |
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 |
strip_comment_tags | a flag that if set to True causes all comment
tags to be removed from the collected comments. |
See Also | |
pathmatch |
Extract messages from a specific file.
This function returns a list of tuples of the form (lineno, message, comments, context).
Parameters | |
method | a string specifying the extraction method (.e.g. "python") |
filename | the path to the file to extract messages from |
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 |
comment_tags | a list of translator tags to search for and include in the results |
options | a dictionary of additional options (optional) |
strip_comment_tags | a flag that if set to True causes all comment
tags to be removed from the collected comments. |
Returns | |
list[tuple[int, str|tuple[str], list[str], str|None] | list of tuples of the form (lineno, message, comments, context) |
Parameters | |
fileobj | the seekable, file-like object the messages should be extracted from |
keywords | a list of keywords (i.e. function names) that should be recognized as translation functions |
comment_tags | a list of translator tags to search for and include in the results |
options | a dictionary of additional options (optional)
Supported options are:
* template string support. |
Extract messages from Python source code.
It returns an iterator yielding tuples in the following form (lineno, funcname, message, comments).
Parameters | |
fileobj | the seekable, file-like object the messages should be extracted from |
keywords | a list of keywords (i.e. function names) that should be recognized as translation functions |
comment_tags | a list of translator tags to search for and include in the results |
options | a dictionary of additional options (optional) |
Returns | |
iterator | Undocumented |
dict
=
Undocumented
Value |
|
extract
that strips comment tags from strings
in a list of comment lines. This functions operates in-place.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).
Parameters | |
filepath | An absolute path to a file that exists. |
method_map | a list of (pattern, method) tuples that maps of extraction method names to extended glob patterns |
options_map | a dictionary of additional options (optional) |
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 |
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 |
comment_tags | a list of tags of translator comments to search for and include in the results |
strip_comment_tags | a flag that if set to True causes all comment
tags to be removed from the collected comments. |
dirpath | the path to the directory to extract messages from. |
Returns | |
Iterable[tuple[str, int, str|tuple[str], list[str], str|None] | iterable of 5-tuples (filename, lineno, messages, comments, context) |