• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.binder/H25-May-2021-10282

.github/workflows/H25-May-2021-10495

docs/H03-May-2022-3,5652,148

pygccxml/H25-May-2021-14,91811,332

release_utils/H25-May-2021-4022

unittests/H25-May-2021-43,10239,035

.coveragercH A D25-May-2021735 2822

.dockerignoreH A D25-May-2021269 2019

.gitattributesH A D25-May-202122 21

.gitignoreH A D25-May-2021269 2019

CHANGELOG.mdH A D25-May-202138.4 KiB1,165737

LICENSE.rstH A D25-May-20211.3 KiB2420

MakefileH A D25-May-20216.6 KiB178145

NOTICEH A D25-May-2021365 148

README.rstH A D25-May-20213 KiB8856

setup.pyH A D25-May-20212 KiB6252

README.rst

1pygccxml
2========
3
4.. image:: https://codecov.io/gh/iMichka/pygccxml/branch/develop/graph/badge.svg
5    :target: https://codecov.io/gh/iMichka/pygccxml
6    :alt: Code coverage status
7.. image:: https://readthedocs.org/projects/pygccxml/badge/?version=develop
8    :target: http://pygccxml.readthedocs.io/en/develop/?badge=develop
9    :alt: Documentation status
10
11pygccxml is a specialized XML reader that reads the output from CastXML.
12It provides a simple framework to navigate C++ declarations, using Python classes.
13
14Using pygccxml you can:
15
16* Parse C++ source code
17* Create a code generator
18* Generate UML diagrams
19* Build code analyzers
20* ...
21
22Installation
23------------
24
25Install instructions can be found `here <http://pygccxml.readthedocs.io/en/master/install.html>`_.
26
27Compatibility
28-------------
29
30pygccxml is compatible with Python 3.5, 3.6, 3.7, 3.8 and pypy3.
31
32Documentation and examples
33--------------------------
34
35The documentation can be found `here <http://pygccxml.readthedocs.io>`_, examples can be found `here <http://pygccxml.readthedocs.io/en/master/examples.html>`_.
36You can also run an example JupyterLab Notebook using Binder, or view it using
37``nbviewer``:
38
39..
40    Developers: See `.binder/README.md` for more information.
41
42.. image:: https://mybinder.org/badge_logo.svg
43    :target: https://mybinder.org/v2/gh/EricCousineau-TRI/pygccxml/feature-py-notebook-example?urlpath=tree/pygccxml/docs/examples/notebook/
44    :alt: Binder
45.. image:: https://img.shields.io/badge/view%20on-nbviewer-brightgreen.svg
46    :target: https://nbviewer.jupyter.org/github/EricCousineau-TRI/pygccxml/tree/feature-py-notebook-example/docs/examples/notebook/
47    :alt: nbviewer
48
49If you want to know more about the API provided by pygccxml, read the `query interface <http://pygccxml.readthedocs.io/en/develop/query_interface.html>`_ document or the `API documentation <http://pygccxml.readthedocs.io/en/develop/apidocs/modules.html>`_.
50
51
52
53A `FAQ <http://pygccxml.readthedocs.io/en/master/faq.html>`_ is also available and may answer some of your questions.
54
55License
56-------
57
58`Boost Software License <http://boost.org/more/license_info.html>`_
59
60Contact us
61----------
62
63For issues with pygccxml you can open an issue `here <https://github.com/CastXML/pygccxml/issues/>`_.
64
65For issues with CastXML you can open an issue `here <https://github.com/CastXML/CastXML>`_.
66
67You can contact us through the `CastXML mailing list <http://public.kitware.com/mailman/listinfo/castxml/>`_.
68
69Branches
70--------
71
72The stable version can be found on the master branch.
73
74The develop branch contains the latest improvements but can be unstable. Pull Requests should be done on the develop branch.
75
76Testing and code coverage
77-------------------------
78
79The builds are done using the Github Actions infrastructure.
80
81Running the test suite is done with:
82
83.. code-block::
84
85  python3 -m unittests.test_all
86
87Code coverage is also available. It is automatically updated after each commit and can be found `here <https://codecov.io/gh/iMichka/pygccxml>`_.
88