Coverage for sacred/sacred/__init__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1#!/usr/bin/env python
2# coding=utf-8
3"""
4The main module of sacred.
6It provides access to the two main classes Experiment and Ingredient.
7"""
9from sacred.__about__ import __version__, __author__, __author_email__, __url__
10from sacred.settings import SETTINGS
11from sacred.experiment import Experiment
12from sacred.ingredient import Ingredient
13from sacred import observers
14from sacred.host_info import host_info_getter, host_info_gatherer
15from sacred.commandline_options import cli_option
18__all__ = (
19 "Experiment",
20 "Ingredient",
21 "observers",
22 "host_info_getter",
23 "__version__",
24 "__author__",
25 "__author_email__",
26 "__url__",
27 "SETTINGS",
28 "host_info_gatherer",
29 "cli_option",
30)