pyEDAA.Reports


NamepyEDAA.Reports JSON
Version 0.5.2 PyPI version JSON
download
home_pagehttps://GitHub.com/pyEDAA/pyEDAA.Reports
SummaryVarious report abstract data models and report format converters.
upload_time2024-04-25 19:55:32
maintainerNone
docs_urlNone
authorPatrick Lehmann
requires_python>=3.8
licenseApache-2.0
keywords reports abstract model data model test case test suite osvvm yaml xml
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a title="edaa-org.github.io/pyEDAA.Reports" href="https://edaa-org.github.io/pyEDAA.Reports"><img height="80px" src="doc/_static/logo.svg"/></a>
</p>

[![Sourcecode on GitHub](https://img.shields.io/badge/pyEDAA-Reports-29b6f6.svg?longCache=true&style=flat-square&logo=GitHub&labelColor=0277bd)](https://GitHub.com/edaa-org/pyEDAA.Reports)
[![Documentation](https://img.shields.io/website?longCache=true&style=flat-square&label=edaa-org.github.io%2FpyEDAA.Reports&logo=GitHub&logoColor=fff&up_color=blueviolet&up_message=Read%20now%20%E2%9E%9A&url=https%3A%2F%2Fedaa-org.github.io%2FpyEDAA.Reports%2Findex.html)](https://edaa-org.github.io/pyEDAA.Reports/)
[![Gitter](https://img.shields.io/badge/chat-on%20gitter-4db797.svg?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef)](https://gitter.im/hdl/community)  
[![GitHub Workflow - Build and Test Status](https://img.shields.io/github/workflow/status/edaa-org/pyEDAA.Reports/Pipeline/main?longCache=true&style=flat-square&label=Build%20and%20Test&logo=GitHub%20Actions&logoColor=FFFFFF)](https://GitHub.com/edaa-org/pyEDAA.Reports/actions/workflows/Pipeline.yml)
[![Codacy - Quality](https://img.shields.io/codacy/grade/f8142b422c1742bdba38e8ac1893870c?longCache=true&style=flat-square&logo=Codacy)](https://app.codacy.com/gh/edaa-org/pyEDAA.Reports)

<!--
[![Sourcecode License](https://img.shields.io/pypi/l/pyEDAA.Reports?longCache=true&style=flat-square&logo=Apache&label=code)](LICENSE.md)
[![Documentation License](https://img.shields.io/badge/doc-CC--BY%204.0-green?longCache=true&style=flat-square&logo=CreativeCommons&logoColor=fff)](LICENSE.md)

[![PyPI](https://img.shields.io/pypi/v/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)](https://pypi.org/project/pyEDAA.Reports/)
![PyPI - Status](https://img.shields.io/pypi/status/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)

[![Libraries.io status for latest release](https://img.shields.io/librariesio/release/pypi/pyEDAA.Reports?longCache=true&style=flat-square&logo=Libraries.io&logoColor=fff)](https://libraries.io/github/edaa-org/pyEDAA.Reports)
[![Codacy - Coverage](https://img.shields.io/codacy/coverage/f8142b422c1742bdba38e8ac1893870c?longCache=true&style=flat-square&logo=Codacy)](https://app.codacy.com/gh/edaa-org/pyEDAA.Reports)
[![Codecov - Branch Coverage](https://img.shields.io/codecov/c/github/edaa-org/pyEDAA.Reports?longCache=true&style=flat-square&logo=Codecov)](https://codecov.io/gh/edaa-org/pyEDAA.Reports)

[![Dependent repos (via libraries.io)](https://img.shields.io/librariesio/dependent-repos/pypi/pyEDAA.Reports?longCache=true&style=flat-square&logo=GitHub)](https://GitHub.com/edaa-org/pyEDAA.Reports/network/dependents)
[![Requires.io](https://img.shields.io/requires/github/edaa-org/pyEDAA.Reports?longCache=true&style=flat-square)](https://requires.io/github/EDAA-ORG/pyEDAA.Reports/requirements/?branch=main)
[![Libraries.io SourceRank](https://img.shields.io/librariesio/sourcerank/pypi/pyEDAA.Reports?longCache=true&style=flat-square)](https://libraries.io/github/edaa-org/pyEDAA.Reports/sourcerank)
-->

Proposal to define an abstract model for outputs from EDA tools and logging libraries.

The main intended use case of pyEDAA.Reports is to import multiple log/report formats (raw logs, CSVs, YAML, JSON, etc.)
and provide a unified model that can generate reports using popular formats such as XUnit or Cobertura.
Since most vendors, CI services and monitoring tools support XML, the internals of pyEDAA.Reports are to be based on
XML transformations.

As an abstract model, the main capability of pyEDAA.Reports is handling messages using an structured format.
The readers categorize messages by IDs and append attributes such as the severity, which allow complex filtering and
fancy coloring for better human readability.

<p align="center">
  <a title="edaa-org.github.io/pyEDAA.Reports" href="https://edaa-org.github.io/pyEDAA.Reports"><img height="275px" src="doc/_static/work-in-progress.png"/></a>
</p>

# Report Kinds

## Test Report Summary

* Test Suite
* Test Case
* Test Parameter

## Code Coverage Report

* Line Coverage
* Statement Coverage
* Branch Coverage
* Expression Coverage
* State Coverage
* Transition Coverage

## Functional Coverage

* Coverage Model
  * Dimension
  * Bin
    * Item
    * Range

## Synthesis

* Area/resources
* Timing

## Implementation

* Area/resources
* Timing

# Target input logs/formats

* ActiveHDL
* CoCoTb
* Diamond
* GHDL
* Icarus Verilog
* ISE
* ModelSim/QuestaSim
* nextpnr
* OSVVM
* RivieraPRO
* SymbiYosys
* Synplify
* Quartus
* Verilator
* Verilog-to-Routing
* Vivado
* VUnit
* Xcelium
* Yosys
* ...

# References

* [olofk/edalize](https://github.com/olofk/edalize/) (see `edalize.reporting`, `edalize.vivado_reporting`, `edalize.quartus_reporting`, `edalize.ise_reporting`, ...)
* [librecores/eda-log-parser](https://github.com/librecores/eda-log-parser)
* [SymbiFlow/fpga-tool-perf](https://github.com/SymbiFlow/fpga-tool-perf)
* [mattvenn/logLUTs](https://github.com/mattvenn/logLUTs)
* [tiagolascasas/Vivado-HLS-Report-Parser](https://github.com/tiagolascasas/Vivado-HLS-Report-Parser)
* [cuelang.org/](https://cuelang.org/)
  * [cuelang.org/docs/tutorials](https://cuelang.org/docs/tutorials/)
  * [cue-lang/cue#162](https://github.com/cue-lang/cue/issues/162)
    * [pypi.org/project/pycue](https://pypi.org/project/pycue/)
    * [philipdexter/pycue](https://github.com/philipdexter/pycue)

            

Raw data

            {
    "_id": null,
    "home_page": "https://GitHub.com/pyEDAA/pyEDAA.Reports",
    "name": "pyEDAA.Reports",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Reports, Abstract Model, Data Model, Test Case, Test Suite, OSVVM, YAML, XML",
    "author": "Patrick Lehmann",
    "author_email": "Paebbels@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e7/d5/3fc940351b795acb77045e01ada251e3ce6f73612fd2562e02b2236fa6ae/pyedaa_reports-0.5.2.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a title=\"edaa-org.github.io/pyEDAA.Reports\" href=\"https://edaa-org.github.io/pyEDAA.Reports\"><img height=\"80px\" src=\"doc/_static/logo.svg\"/></a>\n</p>\n\n[![Sourcecode on GitHub](https://img.shields.io/badge/pyEDAA-Reports-29b6f6.svg?longCache=true&style=flat-square&logo=GitHub&labelColor=0277bd)](https://GitHub.com/edaa-org/pyEDAA.Reports)\n[![Documentation](https://img.shields.io/website?longCache=true&style=flat-square&label=edaa-org.github.io%2FpyEDAA.Reports&logo=GitHub&logoColor=fff&up_color=blueviolet&up_message=Read%20now%20%E2%9E%9A&url=https%3A%2F%2Fedaa-org.github.io%2FpyEDAA.Reports%2Findex.html)](https://edaa-org.github.io/pyEDAA.Reports/)\n[![Gitter](https://img.shields.io/badge/chat-on%20gitter-4db797.svg?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef)](https://gitter.im/hdl/community)  \n[![GitHub Workflow - Build and Test Status](https://img.shields.io/github/workflow/status/edaa-org/pyEDAA.Reports/Pipeline/main?longCache=true&style=flat-square&label=Build%20and%20Test&logo=GitHub%20Actions&logoColor=FFFFFF)](https://GitHub.com/edaa-org/pyEDAA.Reports/actions/workflows/Pipeline.yml)\n[![Codacy - Quality](https://img.shields.io/codacy/grade/f8142b422c1742bdba38e8ac1893870c?longCache=true&style=flat-square&logo=Codacy)](https://app.codacy.com/gh/edaa-org/pyEDAA.Reports)\n\n<!--\n[![Sourcecode License](https://img.shields.io/pypi/l/pyEDAA.Reports?longCache=true&style=flat-square&logo=Apache&label=code)](LICENSE.md)\n[![Documentation License](https://img.shields.io/badge/doc-CC--BY%204.0-green?longCache=true&style=flat-square&logo=CreativeCommons&logoColor=fff)](LICENSE.md)\n\n[![PyPI](https://img.shields.io/pypi/v/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)](https://pypi.org/project/pyEDAA.Reports/)\n![PyPI - Status](https://img.shields.io/pypi/status/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyEDAA.Reports?longCache=true&style=flat-square&logo=PyPI&logoColor=FBE072)\n\n[![Libraries.io status for latest release](https://img.shields.io/librariesio/release/pypi/pyEDAA.Reports?longCache=true&style=flat-square&logo=Libraries.io&logoColor=fff)](https://libraries.io/github/edaa-org/pyEDAA.Reports)\n[![Codacy - Coverage](https://img.shields.io/codacy/coverage/f8142b422c1742bdba38e8ac1893870c?longCache=true&style=flat-square&logo=Codacy)](https://app.codacy.com/gh/edaa-org/pyEDAA.Reports)\n[![Codecov - Branch Coverage](https://img.shields.io/codecov/c/github/edaa-org/pyEDAA.Reports?longCache=true&style=flat-square&logo=Codecov)](https://codecov.io/gh/edaa-org/pyEDAA.Reports)\n\n[![Dependent repos (via libraries.io)](https://img.shields.io/librariesio/dependent-repos/pypi/pyEDAA.Reports?longCache=true&style=flat-square&logo=GitHub)](https://GitHub.com/edaa-org/pyEDAA.Reports/network/dependents)\n[![Requires.io](https://img.shields.io/requires/github/edaa-org/pyEDAA.Reports?longCache=true&style=flat-square)](https://requires.io/github/EDAA-ORG/pyEDAA.Reports/requirements/?branch=main)\n[![Libraries.io SourceRank](https://img.shields.io/librariesio/sourcerank/pypi/pyEDAA.Reports?longCache=true&style=flat-square)](https://libraries.io/github/edaa-org/pyEDAA.Reports/sourcerank)\n-->\n\nProposal to define an abstract model for outputs from EDA tools and logging libraries.\n\nThe main intended use case of pyEDAA.Reports is to import multiple log/report formats (raw logs, CSVs, YAML, JSON, etc.)\nand provide a unified model that can generate reports using popular formats such as XUnit or Cobertura.\nSince most vendors, CI services and monitoring tools support XML, the internals of pyEDAA.Reports are to be based on\nXML transformations.\n\nAs an abstract model, the main capability of pyEDAA.Reports is handling messages using an structured format.\nThe readers categorize messages by IDs and append attributes such as the severity, which allow complex filtering and\nfancy coloring for better human readability.\n\n<p align=\"center\">\n  <a title=\"edaa-org.github.io/pyEDAA.Reports\" href=\"https://edaa-org.github.io/pyEDAA.Reports\"><img height=\"275px\" src=\"doc/_static/work-in-progress.png\"/></a>\n</p>\n\n# Report Kinds\n\n## Test Report Summary\n\n* Test Suite\n* Test Case\n* Test Parameter\n\n## Code Coverage Report\n\n* Line Coverage\n* Statement Coverage\n* Branch Coverage\n* Expression Coverage\n* State Coverage\n* Transition Coverage\n\n## Functional Coverage\n\n* Coverage Model\n  * Dimension\n  * Bin\n    * Item\n    * Range\n\n## Synthesis\n\n* Area/resources\n* Timing\n\n## Implementation\n\n* Area/resources\n* Timing\n\n# Target input logs/formats\n\n* ActiveHDL\n* CoCoTb\n* Diamond\n* GHDL\n* Icarus Verilog\n* ISE\n* ModelSim/QuestaSim\n* nextpnr\n* OSVVM\n* RivieraPRO\n* SymbiYosys\n* Synplify\n* Quartus\n* Verilator\n* Verilog-to-Routing\n* Vivado\n* VUnit\n* Xcelium\n* Yosys\n* ...\n\n# References\n\n* [olofk/edalize](https://github.com/olofk/edalize/) (see `edalize.reporting`, `edalize.vivado_reporting`, `edalize.quartus_reporting`, `edalize.ise_reporting`, ...)\n* [librecores/eda-log-parser](https://github.com/librecores/eda-log-parser)\n* [SymbiFlow/fpga-tool-perf](https://github.com/SymbiFlow/fpga-tool-perf)\n* [mattvenn/logLUTs](https://github.com/mattvenn/logLUTs)\n* [tiagolascasas/Vivado-HLS-Report-Parser](https://github.com/tiagolascasas/Vivado-HLS-Report-Parser)\n* [cuelang.org/](https://cuelang.org/)\n  * [cuelang.org/docs/tutorials](https://cuelang.org/docs/tutorials/)\n  * [cue-lang/cue#162](https://github.com/cue-lang/cue/issues/162)\n    * [pypi.org/project/pycue](https://pypi.org/project/pycue/)\n    * [philipdexter/pycue](https://github.com/philipdexter/pycue)\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Various report abstract data models and report format converters.",
    "version": "0.5.2",
    "project_urls": {
        "Documentation": "https://pyEDAA.GitHub.io/pyEDAA.Reports",
        "Homepage": "https://GitHub.com/pyEDAA/pyEDAA.Reports",
        "Issue Tracker": "https://GitHub.com/pyEDAA/pyEDAA.Reports/issues",
        "Source Code": "https://GitHub.com/pyEDAA/pyEDAA.Reports"
    },
    "split_keywords": [
        "reports",
        " abstract model",
        " data model",
        " test case",
        " test suite",
        " osvvm",
        " yaml",
        " xml"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cc04b782d03704bf6584289a25544622020aec2d47e8aa155266ca32b36f5b0",
                "md5": "5ca09a0cf78d7ee37a4b0e3bbb0f56dd",
                "sha256": "bf2ad754880b97391fe81ecb0c709d37d0d24761a4a2f18c48a346fda20e2e86"
            },
            "downloads": -1,
            "filename": "pyEDAA.Reports-0.5.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5ca09a0cf78d7ee37a4b0e3bbb0f56dd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 35153,
            "upload_time": "2024-04-25T19:55:35",
            "upload_time_iso_8601": "2024-04-25T19:55:35.091539Z",
            "url": "https://files.pythonhosted.org/packages/4c/c0/4b782d03704bf6584289a25544622020aec2d47e8aa155266ca32b36f5b0/pyEDAA.Reports-0.5.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7d53fc940351b795acb77045e01ada251e3ce6f73612fd2562e02b2236fa6ae",
                "md5": "7d716ad9b0ffdf11c20644c31ecbf938",
                "sha256": "9a5667e034dc62ab43470e1861dccb408ab22ace2ad502e3ce8fa2a2aa94ddbc"
            },
            "downloads": -1,
            "filename": "pyedaa_reports-0.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7d716ad9b0ffdf11c20644c31ecbf938",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 29632,
            "upload_time": "2024-04-25T19:55:32",
            "upload_time_iso_8601": "2024-04-25T19:55:32.597173Z",
            "url": "https://files.pythonhosted.org/packages/e7/d5/3fc940351b795acb77045e01ada251e3ce6f73612fd2562e02b2236fa6ae/pyedaa_reports-0.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 19:55:32",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyedaa.reports"
}
        
Elapsed time: 0.27689s