https://github.com/antoinecarme/pyaf
Raw File
Tip revision: 1a5bca828ca361709a6bba7efcf8a4a5bb669216 authored by CARME Antoine on 30 May 2019, 10:04:51 UTC
Update README.md
Tip revision: 1a5bca8
__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