Is your feature request related to a problem? Please describe.
I found this simple import
from prometheus_api_client import PrometheusConnect
not only import PrometheusConnect itself, but also pandas and possibly matplotlib, which take about 50MB more unnecessary memory when I don't want to use DataFrames and plot them.
Is there any way to only import PrometheusConnect without also importing huge pandas and matplotlib?
Is your feature request related to a problem? Please describe.
I found this simple import
not only import
PrometheusConnectitself, but also pandas and possibly matplotlib, which take about 50MB more unnecessary memory when I don't want to use DataFrames and plot them.Is there any way to only import
PrometheusConnectwithout also importing huge pandas and matplotlib?