PyQuante does not support Python 3 (yet)
See original GitHub issueHi all,
I got myself interested in obtaining densities (I believe some QTAIM/ELF/NCI stuff can be easily implemented on top of cclib) and the code in cclib.method.volume
seems perfect for that.
Unfortunately, it’s heavily based on PyQuante (the lines 208 and 227 are critical), a Python 2 only library.
Is there a way around this? It looks like PyQuante is only used for the spatial representation of wavefunctions. Could it be replaced (or a fallback be used in case PyQuante isn’t available)?
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
PyQuante: Python Quantum Chemistry — PyQuante 1.6.3 ...
PyQuante (Sourceforge Project Page) is an open-source suite of programs for developing quantum chemistry methods. The program is written in the Python ......
Read more >rpmuller/pyquante2 - GitHub
PyQuante is an open-source suite of programs for developing quantum chemistry methods. The program is written in the Python programming language, but has...
Read more >PyQuante - PyPI
PyQuante is an open-source suite of programs. for developing quantum chemistry methods. The program is written in the Python programming ...
Read more >PyQuante - Wikipedia
PyQuante is an open-source (BSD) suite of programs for developing quantum chemistry methods ... The program is written in the Python programming language,...
Read more >468579 – Review Request: PyQuante - Python Quantum Chemistry
The program is written in the Python programming language, but has many "rate-determining" modules also written in C for speed. The resulting code,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Continuing replacement discussion in #1077
An option is to add pyquante2/Psi4/pyscf/etc bridges, implement
volume.getbfs
for each one, and then pass this as a function pointer tovolume.wavefunction
andvolume.electrondensity
to abstract away this part of the implementation.