Files
Time-Series-Analysis/.venv/lib/python3.12/site-packages/stanio/__init__.py
2025-07-30 18:53:50 +03:00

15 lines
293 B
Python

from .csv import read_csv
from .json import dump_stan_json, write_stan_json
from .reshape import Variable, parse_header, stan_variables
__all__ = [
"read_csv",
"write_stan_json",
"dump_stan_json",
"Variable",
"parse_header",
"stan_variables",
]
__version__ = "0.5.1"