Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haohanyang/phreeqc
Python bindings to Phreeqc
https://github.com/haohanyang/phreeqc
phreeqc
Last synced: about 2 months ago
JSON representation
Python bindings to Phreeqc
- Host: GitHub
- URL: https://github.com/haohanyang/phreeqc
- Owner: haohanyang
- License: mit
- Created: 2024-11-06T14:00:15.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-11T18:11:44.000Z (2 months ago)
- Last Synced: 2024-11-11T18:25:00.920Z (2 months ago)
- Topics: phreeqc
- Language: C++
- Homepage: https://pypi.org/project/phreeqc/
- Size: 12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHREEQC
Python bindings of [PHREEQC Version 3](https://www.usgs.gov/software/phreeqc-version-3)
The original C/C++ source code was downloaded from [IPhreeqc Modules](https://water.usgs.gov/water-resources/software/PHREEQC/iphreeqc-3.7.3-15968.tar.gz) made by USGS.
## Install
```
pip install phreeqc
```
## Use
```py
from phreeqc import Phreeqcp = Phreeqc()
p.load_database("phreeqc.dat")
p.run_file("myfile.in")print(p.get_selected_output())
```