Metadata-Version: 2.1
Name: calchem
Version: 0.0.2
Summary: A Python module to calculate chemical formulas
Home-page: https://pypi.org/user/sepi3773/
Author: sepi3773
Author-email: author@example.com
License: UNKNOWN
Project-URL: Bug Tracker, https://pypi.org/user/sepi3773/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# calchem
## chemical calculating

This is a simple chemical calculation package. The name is composed of the words __calc__ ulation and __chem__ ical: __calchem__

The package is in the __early stages of development__! The range of functions is still small[^1].

### install via:
```
pip install calchem
```
### How to work with the package?

- Amount of substance (n, [mol]) from mass (m, [g]) and molar mass (M, [g/mol]):
  `get_n(m, M)`
- Molar mass (M, [g/mol]) from mass (m, [g]) and amount of substance (n, [mol]):
  `get_M(m, n)`
- Mass (m, [g]) from amount of substance (n, [mol]) and molar mass (M, [g/mol]):
  `get_m(n, M)`


[^1]: More coming soon!


