Skip to content

Commit 74d3622

Browse files
Adds new version of compounds.csv and small fixes to readmes and docs
1 parent c416087 commit 74d3622

7 files changed

Lines changed: 4137 additions & 3782 deletions

File tree

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# project-specific
2-
update_compounds/
3-
scripts/data/*
2+
update/data/*
43

54
# Byte-compiled / optimized / DLL files
65
__pycache__/

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,6 @@
4040

4141
3. [Documentation](https://ilthermopy.readthedocs.io/): cookbook, descriptive API, and other useful information.
4242

43+
4. [Update tools](update/): script for semi-automatic update of structural information of new ILThermo compounds after database's update.
44+
4345

docs/source/changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Changelog
22
=========
33

4+
1.1.0
5+
-----
6+
7+
* Updates stored structural data (up to June 4, 2024).
8+
9+
* Adds the :py:func:`ilthermopy.GetAllCompounds` function.
10+
11+
* Renames the ``GetCompounds`` function to :py:func:`ilthermopy.GetSavedCompounds`.
12+
13+
* Adds functionality for semi-automatic update of structural information of ILThermo compounds.
14+
15+
* Adds tests.
16+
17+
418
1.0.0
519
-----
620

ilthermopy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
77
'''
88

9-
__version__ = '1.0.0'
10-
__updated__ = 'June 28, 2023'
9+
__version__ = '1.1.0'
10+
__updated__ = 'September 07, 2024'
1111
__license__ = 'MIT'
1212

1313

ilthermopy/compounds.csv

Lines changed: 4116 additions & 3776 deletions
Large diffs are not rendered by default.

ilthermopy/requests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def GetPropertyList() -> dict:
4343
4444
Returns:
4545
dictionary containing two-level structured info on
46-
currently available physchemical properties and their API keys
46+
currently available physchemical properties and their API keys
4747
4848
'''
4949
r = _requests.get(PROPS_URL)
@@ -93,7 +93,7 @@ def GetEntryData(setid: str) -> dict:
9393
9494
Returns:
9595
dictionary containing info on data entry, including reference, compounds,
96-
physico-chemical data, etc.
96+
physico-chemical data, etc.
9797
9898
'''
9999

0 commit comments

Comments
 (0)