Code source de actuariat_python

# -*- coding: utf-8 -*-
"""
Module *actuariat_python*.
It contains material for lectures,
lessons on programming, machine learning.


:githublink:`%|py|8`
"""

import sys
import os

__version__ = "0.5.671"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/actuariat_python"
__url__ = "http://www.xavierdupre.fr/app/actuariat_python/helpsphinx/index.html"
__license__ = "MIT License"
__blog__ = os.path.abspath(
    os.path.join(os.path.dirname(__file__), "rss_teachings.xml"))


[docs]def _setup_hook(): """ does nothing :githublink:`%|py|24` """ pass
[docs]def check(log=False): """ Checks the library is working. It raises an exception. :param log: if True, display information, otherwise :return: 0 or exception :githublink:`%|py|35` """ return True