From fcf8428d27f24df8061b7e3fb2e20d94d145a621 Mon Sep 17 00:00:00 2001 From: Paul Iacomi Date: Wed, 23 Feb 2022 16:15:02 +0100 Subject: [PATCH] chore: remove unneded api --- src/pygaps/api.py | 51 ----------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 src/pygaps/api.py diff --git a/src/pygaps/api.py b/src/pygaps/api.py deleted file mode 100644 index d9217a79..00000000 --- a/src/pygaps/api.py +++ /dev/null @@ -1,51 +0,0 @@ -# pylint: disable=W0614,W0611,W0622 -# flake8: noqa -# isort:skip_file - -# Parsing -from pygaps.parsing.csv import isotherm_from_csv -from pygaps.parsing.csv import isotherm_to_csv -from pygaps.parsing.aif import isotherm_from_aif -from pygaps.parsing.aif import isotherm_to_aif -from pygaps.parsing.bel_dat import isotherm_from_bel -from pygaps.parsing.excel import isotherm_from_xl -from pygaps.parsing.excel import isotherm_to_xl -from pygaps.parsing.isodb import isotherm_from_isodb -from pygaps.parsing.json import isotherm_from_json -from pygaps.parsing.json import isotherm_to_json -from pygaps.parsing.sqlite import isotherms_from_db -from pygaps.parsing.sqlite import isotherm_delete_db -from pygaps.parsing.sqlite import isotherm_to_db - -# Characterisation -from .characterisation.alphas_plots import alpha_s -from .characterisation.alphas_plots import alpha_s_raw -from .characterisation.area_bet import area_BET -from .characterisation.area_bet import area_BET_raw -from .characterisation.area_lang import area_langmuir -from .characterisation.area_lang import area_langmuir_raw -from .characterisation.dr_da_plots import da_plot -from .characterisation.dr_da_plots import dr_plot -from .characterisation.initial_enth import initial_enthalpy_comp -from .characterisation.initial_enth import initial_enthalpy_point -from .characterisation.initial_henry import initial_henry_slope -from .characterisation.initial_henry import initial_henry_virial -from .characterisation.isosteric_enth import isosteric_enthalpy -from .characterisation.isosteric_enth import isosteric_enthalpy_raw -from .characterisation.psd_kernel import psd_dft -from .characterisation.psd_meso import psd_mesoporous -from .characterisation.psd_micro import psd_microporous -from .characterisation.t_plots import t_plot -from .characterisation.t_plots import t_plot_raw - -# IAST -from .iast.pgiast import iast -from .iast.pgiast import iast_binary_svp -from .iast.pgiast import iast_binary_vle -from .iast.pgiast import reverse_iast - -# Modelling/fitting -from .modelling import model_iso - -# Plotting -from .graphing.isotherm_graphs import plot_iso