We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd7c196 commit a186da1Copy full SHA for a186da1
src/atomistics/referencedata/wikipedia.py
@@ -28,7 +28,9 @@ def get_elastic_properties(chemical_symbol: str) -> dict:
28
"bulk_modulus",
29
"shear_modulus",
30
]
31
- df_lst = pandas.read_html("http://en.wikipedia.org/wiki/Elastic_properties_of_the_elements_(data_page)")
+ df_lst = pandas.read_html(
32
+ "http://en.wikipedia.org/wiki/Elastic_properties_of_the_elements_(data_page)"
33
+ )
34
property_dict = {}
35
for i, p in enumerate(property_lst):
36
df_tmp = df_lst[i]
0 commit comments