Metadata-Version: 2.1
Name: chemispy
Version: 1.1.2
Summary: A library for using chemistry in python
Home-page: https://github.com/TechPenguineer/chemispy
Author: TechPenguineer
Author-email: techpenguineer@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: PyQt5

<p align="center" >
    <img src="https://raw.githubusercontent.com/TechPenguineer/chem.py/main/public/logo.png" width="300px">
    <h1 align="center">Chemistry in python</h1>
</p>

# Installation
```bat
pip install chemispy
```

# Usage

```py
from chemispy import *
```

### Atomic Number Query

```python
query.query_atomic_number(1)
```
*Return's the name of the element corresponding to the atomic number*

### Elements List

```python
print(query.list_types())
```
*Returns a list of all elements (Used mostly for debugging)*

### Custom Elements
```python
from chemispy.utils.atomic_number_query import atomic_number_query

atomic_number_query.elements.append("ELEMENT_119")
```

