Metadata-Version: 2.1
Name: glean-parser
Version: 0.16.0
Summary: Parser tools for Mozilla's glean telemetry
Home-page: https://github.com/mozilla/glean_parser
Author: Michael Droettboom
Author-email: mdroettboom@mozilla.com
License: UNKNOWN
Keywords: glean_parser
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: Click (>=6.0)
Requires-Dist: PyYAML (>=3.13)
Requires-Dist: jsonschema (>=3.0.0a3)
Requires-Dist: inflection (>=0.3.1)
Requires-Dist: Jinja2 (>=2.10)
Requires-Dist: isodate (>=0.6.0)
Requires-Dist: diskcache (>=3.1.0)
Requires-Dist: appdirs (>=1.4.3)

============
Glean Parser
============

Parser tools for Mozilla's glean telemetry.

Features
--------

Parses the ``metrics.yaml`` files for the glean telemetry SDK and produces
output for various integrations.

Documentation
-------------

The full documentation is available `here <https://mozilla.github.io/glean_parser/>`__.

Requirements
------------

- Python 3.7 (or later)

The following library requirements are installed automatically when glean_parser
is installed by `pip`.

- appdirs
- Click
- diskcache
- inflection
- isodate
- Jinja2
- jsonschema
- PyYAML

Usage
-----

.. code-block:: console

  $ glean_parser --help

Read in `metrics.yaml`, translate to kotlin format, and output to `output_dir`:

.. code-block:: console

  $ glean_parser translate -o output_dir -f kotlin metrics.yaml

Check a glean ping against the ping schema:

.. code-block:: console

  $ glean_parser check < ping.json


=======
History
=======

0.1.0 (2018-10-15)
------------------

* First release on PyPI.


