Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

aaronreidsmith / pandas   python

Repository URL to install this package:

Version: 0.25.3 

/ tseries / converter.py

# flake8: noqa
import warnings

# TODO `_matplotlib` module should be private, so the plotting backend
# can be change. Decide whether all these should be public and exponsed
# in `pandas.plotting`, or remove from here (I guess they are here for
# legacy reasons
from pandas.plotting._matplotlib.converter import (
    DatetimeConverter,
    MilliSecondLocator,
    PandasAutoDateFormatter,
    PandasAutoDateLocator,
    PeriodConverter,
    TimeConverter,
    TimeFormatter,
    TimeSeries_DateFormatter,
    TimeSeries_DateLocator,
    get_datevalue,
    get_finder,
    time2num,
)


def register():
    from pandas.plotting import register_matplotlib_converters

    msg = (
        "'pandas.tseries.converter.register' has been moved and renamed to "
        "'pandas.plotting.register_matplotlib_converters'. "
    )
    warnings.warn(msg, FutureWarning, stacklevel=2)
    register_matplotlib_converters()