https://github.com/antoinecarme/pyaf
Raw File
Tip revision: ee1df9205c3b7bb6c8b15a8a2f5f585d4d11b9ca authored by Antoine Carme on 27 June 2018, 09:12:48 UTC
Use curldu.mp (WIP)
Tip revision: ee1df92
__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