diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/python/fluent.syntax/PKG-INFO | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/fluent.syntax/PKG-INFO')
-rw-r--r-- | third_party/python/fluent.syntax/PKG-INFO | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/third_party/python/fluent.syntax/PKG-INFO b/third_party/python/fluent.syntax/PKG-INFO new file mode 100644 index 0000000000..7ce7dd4745 --- /dev/null +++ b/third_party/python/fluent.syntax/PKG-INFO @@ -0,0 +1,39 @@ +Metadata-Version: 2.1 +Name: fluent.syntax +Version: 0.18.1 +Summary: Localization library for expressive translations. +Home-page: https://github.com/projectfluent/python-fluent +Author: Mozilla +Author-email: l10n-drivers@mozilla.org +License: APL 2 +Description: ``fluent.syntax`` |fluent.syntax| + --------------------------------- + + Read, write, and transform `Fluent`_ files. + + This package includes the parser, serializer, and traversal + utilities like Visitor and Transformer. You’re looking for this package + if you work on tooling for Fluent in Python. + + .. code-block:: python + + >>> from fluent.syntax import parse, ast, serialize + >>> resource = parse("a-key = String to localize") + >>> resource.body[0].value.elements[0].value = "Localized string" + >>> serialize(resource) + 'a-key = Localized string\n' + + + Find the full documentation on https://projectfluent.org/python-fluent/fluent.syntax/. + + .. _fluent: https://projectfluent.org/ + .. |fluent.syntax| image:: https://github.com/projectfluent/python-fluent/workflows/fluent.syntax/badge.svg + +Keywords: fluent,localization,l10n +Platform: UNKNOWN +Classifier: Development Status :: 3 - Alpha +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Apache Software License +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3.5 +Description-Content-Type: text/x-rst |