Skip to main content

An abstract VHDL language model.

Project description

Sourcecode on GitHub Sourcecode License GitHub tag (latest SemVer incl. pre-release) GitHub release (latest SemVer incl. including pre-releases) GitHub release date Dependent repos (via libraries.io)
GitHub Workflow - Build and Test Status Codacy - Quality Codacy - Coverage Codecov - Branch Coverage Libraries.io SourceRank
GitHub Workflow Release Status PyPI PyPI - Status PyPI - Python Version Libraries.io status for latest release Requires.io
GitHub Workflow - Documentation Status Documentation License Documentation - Read Now!

pyVHDLModel

An abstract VHDL language model written in Python.

Main Goals

This package provides a unified abstract language model for VHDL. Projects reading from source files can derive own classes and implement additional logic to create a concrete language model for their tools.

Projects consuming pre-processed VHDL data (parsed, analyzed or elaborated) can build higher level features and services on such a model, while supporting multiple frontends.

Use Cases

pyVHDLModel Generators

  • High-level API for GHDL's libghdl offered via pyghdl.
  • Code Document-Object-Model (Code-DOM) in pyVHDLParser.

pyVHDLModel Consumers

  • Create graphical views of VHDL files or designs.
    Possible candidates: Symbolator
  • Created a (re)formatted output of VHDL.

Examples

List all Entities with Generics and Ports

The following tiny example is based on GHDL's pyGHDL.dom package implementing pyVHDLModel.

from pathlib import Path
from pyGHDL.dom.NonStandard import Design, Document

sourceFile = Path("example.vhdl")

design = Design()
library = design.GetLibrary("lib")
document = Document(sourceFile)
design.AddDocument(document, library)

for entity in document.Entities:
  print("{}".format(entity.Identifier))
  print("  generics:")
  for generic in entity.GenericItems:
    print("  - {} : {!s} {}".format(
      generic.Identifier, generic.Mode, generic.Subtype)
    )
  print("  ports:")
  for port in entity.PortItems:
    print("  - {} : {!s} {}".format(
      port.Identifier, port.Mode, port.Subtype)
    )

Contributors

License

This Python package (source code) licensed under Apache License 2.0.
The accompanying documentation is licensed under Creative Commons - Attribution 4.0 (CC-BY 4.0).


SPDX-License-Identifier: Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyVHDLModel-0.11.2.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyVHDLModel-0.11.2-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file pyVHDLModel-0.11.2.tar.gz.

File metadata

  • Download URL: pyVHDLModel-0.11.2.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for pyVHDLModel-0.11.2.tar.gz
Algorithm Hash digest
SHA256 7f292ec7353ff6b73774401bfd26d3f8d4c29742e03f3f223e3533deb0f9af5f
MD5 5157d1293a809b974269952226d525a0
BLAKE2b-256 cc2c49251398b5726539d4a5f9e21fc14bf09f36bbdd65ecb88d8450553be58f

See more details on using hashes here.

File details

Details for the file pyVHDLModel-0.11.2-py3-none-any.whl.

File metadata

  • Download URL: pyVHDLModel-0.11.2-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for pyVHDLModel-0.11.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5662a69691b73b73f2a76eb07157a423154062467bca980111eb394eede74f75
MD5 bb95cc9b1713a74aee14f0d2da7cc838
BLAKE2b-256 57365e3860f71a1ec68f0534674fcb0c7fc290feb405228dc47987af454ef418

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page