https://github.com/antoinecarme/pyaf
Raw File
Tip revision: 9429d65b599e26bb6128ff4be0b500369fdc3679 authored by Antoine Carme on 01 November 2018, 12:43:13 UTC
Add Croston Method #97
Tip revision: 9429d65
__init__.py
# Copyright (C) 2016 Antoine Carme <Antoine.Carme@Laposte.net>
# All rights reserved.

# This file is part of the Python Automatic Forecasting (PyAF) library and is made available under
# the terms of the 3 Clause BSD license

def check_python_version_for_pyaf():
    import six
    if six.PY2:
        raise Exception("PYAF_ERROR_PYTHON_2_NOT_SUPPORTED")


check_python_version_for_pyaf()

from . import ForecastEngine, HierarchicalForecastEngine

__version__ = '1.0.0'

back to top