Metadata-Version: 2.4
Name: bschemistry
Version: 0.1.2
Summary: Basic chemistry
Project-URL: Homepage, https://github.com/Axel00x/basic-chemistry
Project-URL: Issues, https://github.com/Axel00x/basic-chemistry
Author: Axel00x
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# bschemistry
#### v0.1.2

Bschemistry (basic chemistry) is a library that contains the basic functions to use chemistry on Python as well!
It has a complete and accurate periodic table with all data updated regularly and frequent updates for new functions and features.

Example of the table structure:

```python
'name': 'Hydrogen',
'symbol': 'H',
'a_num': 1,
'a_mass': 1.00794,           # u
'a_radius': 30,              # pm (picometers)
'electron_config': '1s1', 
'electronegativity': 2.2,    # Pauling's scale
'electron_affinity': 72.8,   # kJ/mol
'ionization_energies': 1312, # kJ/mol
'class': 'nonmetal',
'oxidation_nums': [-1,1],
'melting_temp': 14,          # K
'boiling_temp': 20,          # K
'd': 0.0899,                 # g/L
'yr': 1766                   # year of discovery
```

## Manual, documentation and FAQ
To view the **documentation** for this project visit [DOCS.md](docs/DOCS.md).
