├── .bumpversion.cfg ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── codeql.yml │ └── main.yml ├── .gitignore ├── .hgignore ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── CHANGES.rst ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── alembic.ini ├── alembic ├── README ├── env.py ├── script.py.mako └── versions │ ├── 00d5e4e8fba1_add_mullay_electronegativity.py │ ├── 07dec3c19f1a_add_mendeleev_number.py │ ├── 08ca43d1d700_add_glawe_number_column.py │ ├── 121ee2bd0610_add_isotopes_columns.py │ ├── 1cb409ebf667_add_gould_bucko_c6_column.py │ ├── 1e8851ab054e_add_jmol_colors_cpk_colors_columns.py │ ├── 239b66a4f79e_rename_electronegativity.py │ ├── 285dd74e23de_drop_atomic_volume_column.py │ ├── 2c10fa336767_change_melting_point_type.py │ ├── 32c95be6f49_add_molcas_gv_color.py │ ├── 37f984a41cdd_create_color_column_in_series.py │ ├── 3f1b360691cd_add_is_monoisotopic_column.py │ ├── 3fa9c7ae3440_change_pettifor_number_type_to_int.py │ ├── 461fa3f6b545_add_pa_and_gb_columns.py │ ├── 4b8324491495_add_heat_of_formation_column.py │ ├── 4bff6db401a7_add_isotope_decay_mode.py │ ├── 4cd9c1a13771_add_name_origin_sources_uses.py │ ├── 4d617114c1f5_remove_covalent_radius_slater.py │ ├── 4fcf211b2c3a_add_ghosh_electronegativity.py │ ├── 52c819e79602_add_covalent_radii_columns.py │ ├── 55a636dde7bf_add_gl_and_rb_electronegativities.py │ ├── 57be8c42cb8_rename_and_add_covalent_radii.py │ ├── 57f0349dc312_add_vdw_radius_columns.py │ ├── 59743e288bf2_create_en_allen_column.py │ ├── 5a05464c07ae_add_discovery.py │ ├── 5c02f2f7171d_add_cas.py │ ├── 5cc7e8b21b_add_c6_column.py │ ├── 615cc0829a54_add_molar_heat_capacity.py │ ├── 6574d85399ad_add_pettifor_scale_column.py │ ├── 68c046f6983b_add_scattering_factors_table.py │ ├── 6960062d80bc_new_isotopes_table.py │ ├── 6b61728951ad_add_price_per_kg_column_to_elements.py │ ├── 6cb09546b441_add_goldschmidt_class.py │ ├── 703682715347_remove_melting_point_and_boiling_point_.py │ ├── 769f69a5386c_add_geochemical_class.py │ ├── 794e1a4ef0d3_add_vdw_radii_alvarez.py │ ├── 7be81742f7b9_add_atomic_radius_rahm.py │ ├── 7d745d77a7c1_add_propertymetadata_table.py │ ├── 84f67c0d2733_add_dipole_polarizability_unc_column.py │ ├── 88ac4b3cbd41_phase_transisions_extra_columns.py │ ├── 8e68245fe95a_modify_isotopes_table.py │ ├── 93964245e992_add_category_to_oxidationstate.py │ ├── a5189c25d85e_add_is_radioactive.py │ ├── abff1959e2ec_update_ionization_energies_from_nist_asd.py │ ├── b4939e81ef55_rename_specific_heat.py │ ├── bffefc6aad52_add_abundance_columns.py │ ├── c36c01e33842_rename_annotation_to__annotation.py │ ├── c4a0292785e6_add_double_and_triple_cov_rad_pyykko.py │ ├── c70419b916a3_add_metallic_radii.py │ ├── db2973cd13af_add_miedema_electronegativity_volume_.py │ ├── e7191e2ea28b_drop__annotation.py │ ├── e93dcf938eaf_create_phase_transition_table.py │ ├── edad0a76e11e_add_supply_chain_attributes.py │ └── f1171adcbf78_replace_mass_with_weight.py ├── conda-recipe ├── bld.bat ├── build.sh └── meta.yaml ├── docs ├── Makefile ├── make.bat ├── requirements.txt ├── source │ ├── CONTRIBUTING.md │ ├── _static │ │ ├── img │ │ │ ├── en_allen.png │ │ │ ├── en_allred-rochow.png │ │ │ ├── en_cottrell-sutton.png │ │ │ ├── en_ghosh.png │ │ │ ├── en_gordy.png │ │ │ ├── en_gunnarsson_lundqvist.png │ │ │ ├── en_martynov-batsanov.png │ │ │ ├── en_miedema.png │ │ │ ├── en_mullay.png │ │ │ ├── en_mulliken.png │ │ │ ├── en_nagle.png │ │ │ ├── en_pauling.png │ │ │ ├── en_robles_bartolotti.png │ │ │ ├── en_sanderson.png │ │ │ ├── logo.png │ │ │ ├── mendeleev_periodic_series.png │ │ │ ├── mendeleevapp_correlations.png │ │ │ ├── mendeleevapp_periodic.png │ │ │ ├── name_and_logo.png │ │ │ └── periodictable.png │ │ └── style.css │ ├── _templates │ │ └── layout.html │ ├── api │ │ ├── api.rst │ │ ├── mendeleev.cli.rst │ │ ├── mendeleev.db.rst │ │ ├── mendeleev.econf.rst │ │ ├── mendeleev.electronegativity.rst │ │ ├── mendeleev.fetch.rst │ │ ├── mendeleev.mendeleev.rst │ │ ├── mendeleev.utils.rst │ │ ├── mendeleev.vis.bokeh.rst │ │ ├── mendeleev.vis.periodictable.rst │ │ ├── mendeleev.vis.plotly.rst │ │ ├── mendeleev.vis.seaborn.rst │ │ ├── mendeleev.vis.utils.rst │ │ └── models.rst │ ├── bibliography.rst │ ├── changes_link.rst │ ├── conf.py │ ├── data.rst │ ├── data_access.rst │ ├── electronegativity.rst │ ├── index.rst │ ├── install.rst │ ├── license_link.rst │ ├── notebooks │ │ ├── advanced_visualizations.ipynb │ │ ├── bulk_data_access.ipynb │ │ ├── electronic_configuration.ipynb │ │ ├── ions.ipynb │ │ ├── quick_start.ipynb │ │ └── visualizations.ipynb │ ├── quick.rst │ ├── references.bib │ └── tutorials.rst └── templates │ └── data.rst ├── mendeleev ├── __init__.py ├── ciaawparser.py ├── cli.py ├── db.py ├── econf.py ├── electronegativity.py ├── elements.db ├── fetch.py ├── interfaces │ ├── nist_asd.py │ └── wiki_oxidation_states.py ├── ion.py ├── mendeleev.py ├── models.py ├── utils.py └── vis │ ├── __init__.py │ ├── bokeh.py │ ├── periodictable.py │ ├── plotly.py │ ├── seaborn.py │ └── utils.py ├── notebooks ├── 2025-03-update-g-factors.ipynb ├── 2025-03-update-nuclear-el-quad-moments.ipynb ├── atomic-scattering-factors.ipynb ├── glawe-pettifor.ipynb └── querying.ipynb ├── poetry.lock ├── pyproject.toml ├── readthedocs.yml ├── setup.py ├── tasks.py └── tests ├── test_db.py ├── test_econf └── test_econf.py ├── test_electronegativity.py ├── test_element.py ├── test_fetch.py ├── test_imports.py ├── test_ion.py ├── test_isotope.py ├── test_units.py └── test_vis.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.hgignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/00d5e4e8fba1_add_mullay_electronegativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/00d5e4e8fba1_add_mullay_electronegativity.py -------------------------------------------------------------------------------- /alembic/versions/07dec3c19f1a_add_mendeleev_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/07dec3c19f1a_add_mendeleev_number.py -------------------------------------------------------------------------------- /alembic/versions/08ca43d1d700_add_glawe_number_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/08ca43d1d700_add_glawe_number_column.py -------------------------------------------------------------------------------- /alembic/versions/121ee2bd0610_add_isotopes_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/121ee2bd0610_add_isotopes_columns.py -------------------------------------------------------------------------------- /alembic/versions/1cb409ebf667_add_gould_bucko_c6_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/1cb409ebf667_add_gould_bucko_c6_column.py -------------------------------------------------------------------------------- /alembic/versions/1e8851ab054e_add_jmol_colors_cpk_colors_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/1e8851ab054e_add_jmol_colors_cpk_colors_columns.py -------------------------------------------------------------------------------- /alembic/versions/239b66a4f79e_rename_electronegativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/239b66a4f79e_rename_electronegativity.py -------------------------------------------------------------------------------- /alembic/versions/285dd74e23de_drop_atomic_volume_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/285dd74e23de_drop_atomic_volume_column.py -------------------------------------------------------------------------------- /alembic/versions/2c10fa336767_change_melting_point_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/2c10fa336767_change_melting_point_type.py -------------------------------------------------------------------------------- /alembic/versions/32c95be6f49_add_molcas_gv_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/32c95be6f49_add_molcas_gv_color.py -------------------------------------------------------------------------------- /alembic/versions/37f984a41cdd_create_color_column_in_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/37f984a41cdd_create_color_column_in_series.py -------------------------------------------------------------------------------- /alembic/versions/3f1b360691cd_add_is_monoisotopic_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/3f1b360691cd_add_is_monoisotopic_column.py -------------------------------------------------------------------------------- /alembic/versions/3fa9c7ae3440_change_pettifor_number_type_to_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/3fa9c7ae3440_change_pettifor_number_type_to_int.py -------------------------------------------------------------------------------- /alembic/versions/461fa3f6b545_add_pa_and_gb_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/461fa3f6b545_add_pa_and_gb_columns.py -------------------------------------------------------------------------------- /alembic/versions/4b8324491495_add_heat_of_formation_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/4b8324491495_add_heat_of_formation_column.py -------------------------------------------------------------------------------- /alembic/versions/4bff6db401a7_add_isotope_decay_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/4bff6db401a7_add_isotope_decay_mode.py -------------------------------------------------------------------------------- /alembic/versions/4cd9c1a13771_add_name_origin_sources_uses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/4cd9c1a13771_add_name_origin_sources_uses.py -------------------------------------------------------------------------------- /alembic/versions/4d617114c1f5_remove_covalent_radius_slater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/4d617114c1f5_remove_covalent_radius_slater.py -------------------------------------------------------------------------------- /alembic/versions/4fcf211b2c3a_add_ghosh_electronegativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/4fcf211b2c3a_add_ghosh_electronegativity.py -------------------------------------------------------------------------------- /alembic/versions/52c819e79602_add_covalent_radii_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/52c819e79602_add_covalent_radii_columns.py -------------------------------------------------------------------------------- /alembic/versions/55a636dde7bf_add_gl_and_rb_electronegativities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/55a636dde7bf_add_gl_and_rb_electronegativities.py -------------------------------------------------------------------------------- /alembic/versions/57be8c42cb8_rename_and_add_covalent_radii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/57be8c42cb8_rename_and_add_covalent_radii.py -------------------------------------------------------------------------------- /alembic/versions/57f0349dc312_add_vdw_radius_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/57f0349dc312_add_vdw_radius_columns.py -------------------------------------------------------------------------------- /alembic/versions/59743e288bf2_create_en_allen_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/59743e288bf2_create_en_allen_column.py -------------------------------------------------------------------------------- /alembic/versions/5a05464c07ae_add_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/5a05464c07ae_add_discovery.py -------------------------------------------------------------------------------- /alembic/versions/5c02f2f7171d_add_cas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/5c02f2f7171d_add_cas.py -------------------------------------------------------------------------------- /alembic/versions/5cc7e8b21b_add_c6_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/5cc7e8b21b_add_c6_column.py -------------------------------------------------------------------------------- /alembic/versions/615cc0829a54_add_molar_heat_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/615cc0829a54_add_molar_heat_capacity.py -------------------------------------------------------------------------------- /alembic/versions/6574d85399ad_add_pettifor_scale_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/6574d85399ad_add_pettifor_scale_column.py -------------------------------------------------------------------------------- /alembic/versions/68c046f6983b_add_scattering_factors_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/68c046f6983b_add_scattering_factors_table.py -------------------------------------------------------------------------------- /alembic/versions/6960062d80bc_new_isotopes_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/6960062d80bc_new_isotopes_table.py -------------------------------------------------------------------------------- /alembic/versions/6b61728951ad_add_price_per_kg_column_to_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/6b61728951ad_add_price_per_kg_column_to_elements.py -------------------------------------------------------------------------------- /alembic/versions/6cb09546b441_add_goldschmidt_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/6cb09546b441_add_goldschmidt_class.py -------------------------------------------------------------------------------- /alembic/versions/703682715347_remove_melting_point_and_boiling_point_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/703682715347_remove_melting_point_and_boiling_point_.py -------------------------------------------------------------------------------- /alembic/versions/769f69a5386c_add_geochemical_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/769f69a5386c_add_geochemical_class.py -------------------------------------------------------------------------------- /alembic/versions/794e1a4ef0d3_add_vdw_radii_alvarez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/794e1a4ef0d3_add_vdw_radii_alvarez.py -------------------------------------------------------------------------------- /alembic/versions/7be81742f7b9_add_atomic_radius_rahm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/7be81742f7b9_add_atomic_radius_rahm.py -------------------------------------------------------------------------------- /alembic/versions/7d745d77a7c1_add_propertymetadata_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/7d745d77a7c1_add_propertymetadata_table.py -------------------------------------------------------------------------------- /alembic/versions/84f67c0d2733_add_dipole_polarizability_unc_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/84f67c0d2733_add_dipole_polarizability_unc_column.py -------------------------------------------------------------------------------- /alembic/versions/88ac4b3cbd41_phase_transisions_extra_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/88ac4b3cbd41_phase_transisions_extra_columns.py -------------------------------------------------------------------------------- /alembic/versions/8e68245fe95a_modify_isotopes_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/8e68245fe95a_modify_isotopes_table.py -------------------------------------------------------------------------------- /alembic/versions/93964245e992_add_category_to_oxidationstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/93964245e992_add_category_to_oxidationstate.py -------------------------------------------------------------------------------- /alembic/versions/a5189c25d85e_add_is_radioactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/a5189c25d85e_add_is_radioactive.py -------------------------------------------------------------------------------- /alembic/versions/abff1959e2ec_update_ionization_energies_from_nist_asd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/abff1959e2ec_update_ionization_energies_from_nist_asd.py -------------------------------------------------------------------------------- /alembic/versions/b4939e81ef55_rename_specific_heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/b4939e81ef55_rename_specific_heat.py -------------------------------------------------------------------------------- /alembic/versions/bffefc6aad52_add_abundance_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/bffefc6aad52_add_abundance_columns.py -------------------------------------------------------------------------------- /alembic/versions/c36c01e33842_rename_annotation_to__annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/c36c01e33842_rename_annotation_to__annotation.py -------------------------------------------------------------------------------- /alembic/versions/c4a0292785e6_add_double_and_triple_cov_rad_pyykko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/c4a0292785e6_add_double_and_triple_cov_rad_pyykko.py -------------------------------------------------------------------------------- /alembic/versions/c70419b916a3_add_metallic_radii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/c70419b916a3_add_metallic_radii.py -------------------------------------------------------------------------------- /alembic/versions/db2973cd13af_add_miedema_electronegativity_volume_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/db2973cd13af_add_miedema_electronegativity_volume_.py -------------------------------------------------------------------------------- /alembic/versions/e7191e2ea28b_drop__annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/e7191e2ea28b_drop__annotation.py -------------------------------------------------------------------------------- /alembic/versions/e93dcf938eaf_create_phase_transition_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/e93dcf938eaf_create_phase_transition_table.py -------------------------------------------------------------------------------- /alembic/versions/edad0a76e11e_add_supply_chain_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/edad0a76e11e_add_supply_chain_attributes.py -------------------------------------------------------------------------------- /alembic/versions/f1171adcbf78_replace_mass_with_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/alembic/versions/f1171adcbf78_replace_mass_with_weight.py -------------------------------------------------------------------------------- /conda-recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/conda-recipe/bld.bat -------------------------------------------------------------------------------- /conda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/conda-recipe/build.sh -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/source/_static/img/en_allen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_allen.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_allred-rochow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_allred-rochow.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_cottrell-sutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_cottrell-sutton.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_ghosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_ghosh.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_gordy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_gordy.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_gunnarsson_lundqvist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_gunnarsson_lundqvist.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_martynov-batsanov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_martynov-batsanov.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_miedema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_miedema.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_mullay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_mullay.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_mulliken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_mulliken.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_nagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_nagle.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_pauling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_pauling.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_robles_bartolotti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_robles_bartolotti.png -------------------------------------------------------------------------------- /docs/source/_static/img/en_sanderson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/en_sanderson.png -------------------------------------------------------------------------------- /docs/source/_static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/logo.png -------------------------------------------------------------------------------- /docs/source/_static/img/mendeleev_periodic_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/mendeleev_periodic_series.png -------------------------------------------------------------------------------- /docs/source/_static/img/mendeleevapp_correlations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/mendeleevapp_correlations.png -------------------------------------------------------------------------------- /docs/source/_static/img/mendeleevapp_periodic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/mendeleevapp_periodic.png -------------------------------------------------------------------------------- /docs/source/_static/img/name_and_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/name_and_logo.png -------------------------------------------------------------------------------- /docs/source/_static/img/periodictable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_static/img/periodictable.png -------------------------------------------------------------------------------- /docs/source/_static/style.css: -------------------------------------------------------------------------------- 1 | .wy-nav-content { 2 | max-width: 1200px !important; 3 | } -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/api/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/api.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.cli.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.db.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.econf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.econf.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.electronegativity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.electronegativity.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.fetch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.fetch.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.mendeleev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.mendeleev.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.utils.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.vis.bokeh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.vis.bokeh.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.vis.periodictable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.vis.periodictable.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.vis.plotly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.vis.plotly.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.vis.seaborn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.vis.seaborn.rst -------------------------------------------------------------------------------- /docs/source/api/mendeleev.vis.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/mendeleev.vis.utils.rst -------------------------------------------------------------------------------- /docs/source/api/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/api/models.rst -------------------------------------------------------------------------------- /docs/source/bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/bibliography.rst -------------------------------------------------------------------------------- /docs/source/changes_link.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/data.rst -------------------------------------------------------------------------------- /docs/source/data_access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/data_access.rst -------------------------------------------------------------------------------- /docs/source/electronegativity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/electronegativity.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/license_link.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/license_link.rst -------------------------------------------------------------------------------- /docs/source/notebooks/advanced_visualizations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/advanced_visualizations.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/bulk_data_access.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/bulk_data_access.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/electronic_configuration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/electronic_configuration.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/ions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/ions.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/quick_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/quick_start.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/visualizations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/notebooks/visualizations.ipynb -------------------------------------------------------------------------------- /docs/source/quick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/quick.rst -------------------------------------------------------------------------------- /docs/source/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/references.bib -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /docs/templates/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/docs/templates/data.rst -------------------------------------------------------------------------------- /mendeleev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/__init__.py -------------------------------------------------------------------------------- /mendeleev/ciaawparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/ciaawparser.py -------------------------------------------------------------------------------- /mendeleev/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/cli.py -------------------------------------------------------------------------------- /mendeleev/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/db.py -------------------------------------------------------------------------------- /mendeleev/econf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/econf.py -------------------------------------------------------------------------------- /mendeleev/electronegativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/electronegativity.py -------------------------------------------------------------------------------- /mendeleev/elements.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/elements.db -------------------------------------------------------------------------------- /mendeleev/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/fetch.py -------------------------------------------------------------------------------- /mendeleev/interfaces/nist_asd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/interfaces/nist_asd.py -------------------------------------------------------------------------------- /mendeleev/interfaces/wiki_oxidation_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/interfaces/wiki_oxidation_states.py -------------------------------------------------------------------------------- /mendeleev/ion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/ion.py -------------------------------------------------------------------------------- /mendeleev/mendeleev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/mendeleev.py -------------------------------------------------------------------------------- /mendeleev/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/models.py -------------------------------------------------------------------------------- /mendeleev/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/utils.py -------------------------------------------------------------------------------- /mendeleev/vis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/__init__.py -------------------------------------------------------------------------------- /mendeleev/vis/bokeh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/bokeh.py -------------------------------------------------------------------------------- /mendeleev/vis/periodictable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/periodictable.py -------------------------------------------------------------------------------- /mendeleev/vis/plotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/plotly.py -------------------------------------------------------------------------------- /mendeleev/vis/seaborn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/seaborn.py -------------------------------------------------------------------------------- /mendeleev/vis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/mendeleev/vis/utils.py -------------------------------------------------------------------------------- /notebooks/2025-03-update-g-factors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/notebooks/2025-03-update-g-factors.ipynb -------------------------------------------------------------------------------- /notebooks/2025-03-update-nuclear-el-quad-moments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/notebooks/2025-03-update-nuclear-el-quad-moments.ipynb -------------------------------------------------------------------------------- /notebooks/atomic-scattering-factors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/notebooks/atomic-scattering-factors.ipynb -------------------------------------------------------------------------------- /notebooks/glawe-pettifor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/notebooks/glawe-pettifor.ipynb -------------------------------------------------------------------------------- /notebooks/querying.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/notebooks/querying.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_econf/test_econf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_econf/test_econf.py -------------------------------------------------------------------------------- /tests/test_electronegativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_electronegativity.py -------------------------------------------------------------------------------- /tests/test_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_element.py -------------------------------------------------------------------------------- /tests/test_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_fetch.py -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /tests/test_ion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_ion.py -------------------------------------------------------------------------------- /tests/test_isotope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_isotope.py -------------------------------------------------------------------------------- /tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_units.py -------------------------------------------------------------------------------- /tests/test_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmmentel/mendeleev/HEAD/tests/test_vis.py --------------------------------------------------------------------------------