You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python class to manage, check and sort CAS Registry Numbers® (CAS RN®).
11
12
12
13
<details>
13
-
<summary>Table of Content</summary>
14
+
<summary>Table of Contents</summary>
14
15
15
16
1.[Description](#description)
16
17
2.[How to install and uninstall?](#how-to-install-and-uninstall)
@@ -23,17 +24,25 @@ Python class to manage, check and sort CAS Registry Numbers® (CAS RN®).
23
24
**casregnum** is a Python class to manage, check, and sort CAS Registry Numbers® (CAS RN®) by the [Chemical Abstracts Service](https://www.cas.org/). Check their official [FAQ website](https://www.cas.org/support/documentation/chemical-substances/faqs) for more information on CAS numbers.
24
25
25
26
26
-
## How to install and uninstall?
27
+
## How to install and uninstall
27
28
**casregnum** can be installed from the [Python Package Index (PyPI)](https://pypi.org/) repository by calling
28
29
29
-
pip install casregnum
30
+
pip install casregnum
31
+
32
+
or
33
+
34
+
uv add casregnum
30
35
31
36
In order to uninstall **casregnum** from your local environment use
32
37
33
-
pip uninstall casregnum
38
+
pip uninstall casregnum
39
+
40
+
or
41
+
42
+
uv remove casregnum
34
43
35
44
36
-
## How to use?
45
+
## How to use
37
46
**casregnum** provides the `CAS` class for creating a CAS Registry Number® instance:
38
47
39
48
```Python
@@ -81,18 +90,15 @@ for i, isomer in enumerate(sorted(octanes), start=1):
0 commit comments