Plugins: Difference between revisions
(Created page with "Implementing features over VASP carries a somewhat significant overhead, both in term of code development and with maintenance. An alternative approach is to use our Plugin infrastructure. Simply write [https://www.python.org/ Python] functions in a pre-defined format and VASP will recognize and run your code while it is running.") |
No edit summary |
||
Line 1: | Line 1: | ||
Implementing features over VASP carries a somewhat significant overhead, both in term of code development and | Implementing features over VASP carries a somewhat significant overhead, both in term of code development and maintenance. An alternative approach is to use our Plugin infrastructure. Simply write [https://www.python.org/ Python] functions in a pre-defined format and VASP will recognize and execute your code while it is running. This page describes the steps that you will need to write your first Python script and link it with VASP. | ||
==Installation== |
Revision as of 08:22, 11 June 2024
Implementing features over VASP carries a somewhat significant overhead, both in term of code development and maintenance. An alternative approach is to use our Plugin infrastructure. Simply write Python functions in a pre-defined format and VASP will recognize and execute your code while it is running. This page describes the steps that you will need to write your first Python script and link it with VASP.