You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hdlparse is a simple package implementing a rudimentary parser for VHDL and Verilog. It is not capable of fully parsing the entire language. Rather, it is meant to extract enough key information from a source file to create generated documentation.
4
+
Hdlparse is a simple package implementing a rudimentary parser for VHDL and Verilog.
5
+
It is not capable of fully parsing the entire language.
6
+
Rather, it is meant to extract enough key information from a source file to create generated documentation.
7
7
8
-
This library is used by the `Symbolator <https://github.com/kevinpt/symbolator>`_ diagram generator.
8
+
This library is used by the `Symbolator <https://github.com/hdl/symbolator>`_ diagram generator.
9
9
10
-
For VHDL this library can extract component, subprogram, type, subtype, and constant declarations from a package. For Verilog it can extract module declarations (both 1995 and 2001 syntax).
10
+
For VHDL this library can extract component, subprogram, type, subtype, and constant declarations from a package.
11
+
For Verilog it can extract module declarations (both 1995 and 2001 syntax).
11
12
12
13
13
14
Requirements
14
15
------------
15
16
16
17
Hdlparse requires either Python 2.7 or Python 3.x and no additional libraries.
17
18
18
-
The installation script depends on setuptools. The source is written in
19
-
Python 2.7 syntax but will convert cleanly to Python 3 when the installer
20
-
passes it through 2to3.
19
+
The installation script depends on setuptools.
20
+
The source is written in Python 2.7 syntax but will convert cleanly to Python 3 when the installer passes it through 2to3.
21
21
22
22
23
23
Download
24
24
--------
25
25
26
-
You can access the Hdlparse Git repository from `Github
27
-
<https://github.com/kevinpt/hdlparse>`_. You can install direct from PyPI with the "pip"
28
-
command if you have it available.
26
+
You can access the Hdlparse Git repository from `Github<https://github.com/hdl/pyHDLParser>`_.
27
+
You can install direct from PyPI with the "pip" command if you have it available.
28
+
29
29
30
30
Installation
31
31
------------
32
32
33
-
Hdlparse is a Python library. You must have Python installed first to use it. Most modern Linux distributions and OS/X have it available by default. There are a number of options available for Windows. If you don't already have a favorite, I recommend getting one of the `"full-stack" Python distros <http://www.scipy.org/install.html>`_ that are geared toward scientific computing such as Anaconda or Python(x,y).
33
+
Hdlparse is a Python library.
34
+
You must have Python installed first to use it.
35
+
Most modern Linux distributions and OS/X have it available by default.
36
+
There are a number of options available for Windows.
37
+
If you don't already have a favorite, I recommend getting one of the
that are geared toward scientific computing such as Anaconda or Python(x,y).
34
40
35
-
You need to have the Python setuptools installed first. If your OS has a package manager, it may be preferable to install setuptools through that tool. Otherwise you can use Pip:
41
+
You need to have the Python setuptools installed first.
42
+
If your OS has a package manager, it may be preferable to install setuptools through that tool.
43
+
Otherwise you can use Pip:
36
44
37
45
.. code-block:: sh
38
46
@@ -44,7 +52,9 @@ The easiest way to install Hdlparse is from `PyPI <https://pypi.python.org/pypi/
44
52
45
53
> pip install --upgrade hdlparse
46
54
47
-
This will download and install the latest release, upgrading if you already have it installed. If you don't have ``pip`` you may have the ``easy_install`` command available which can be used to install ``pip`` on your system:
55
+
This will download and install the latest release, upgrading if you already have it installed.
56
+
If you don't have ``pip`` you may have the ``easy_install`` command available which can be used to install ``pip`` on
57
+
your system:
48
58
49
59
.. code-block:: sh
50
60
@@ -55,9 +65,10 @@ You can also use ``pip`` to get the latest development code from Github:
If you manually downloaded a source package or created a clone with Git you can install with the following command run from the base Hdlparse directory:
70
+
If you manually downloaded a source package or created a clone with Git you can install with the following command run
71
+
from the base Hdlparse directory:
61
72
62
73
.. code-block:: sh
63
74
@@ -72,5 +83,5 @@ Documentation
72
83
-------------
73
84
74
85
The full documentation is available online at the `main Hdlparse site
0 commit comments