Contribute#

Overall guidance on contributing to a PyAnsys library appears in the Contributing topic in the PyAnsys Developer’s Guide. Ensure that you are thoroughly familiar with this guide before attempting to contribute to PyDnamicReporting.

Post issues#

Use the PyDnamicReporting Issues page to submit questions, report bugs, and request new features.

To reach the project support team, email pyansys.core@ansys.com.

Adhere to code style#

PyDynamicReporting is compliant with the Coding style described in the PyAnsys Developer’s Guide. It uses the tool pre-commit to align the code style. You can install and activate this tool with these commands:

python -m pip install pre-commit
pre-commit install

You can then directly execute pre-commit with this command:

pre-commit run --all-files --show-diff-on-failure