ATS Utilities

ats_utilities is framework for creating Apps/Tools/Scripts.

Developed in python code.

The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.

ats_utilities python checker ats_utilities package checker

ats_utilities github issues ats_utilities github contributors

ats_utilities documentation Status

Installation

Used next development environment

debian linux os

ats_utilities python3 build

Navigate to release page download and extract release archive.

To install ats_utilities run

tar xvzf ats_utilities-x.y.z.tar.gz
cd ats_utilities-x.y.z
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install dist/ats_utilities-x.y.z-py3-none-any.whl
rm -f get-pip.py

Or type the following

tar xvzf ats_utilities-x.y.z.tar.gz
cd ats_utilities-x.y.z/
# pyton3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info

You can use Docker to create image/container, or You can use pip to install

# python3
pip3 install ats_utilities

Dependencies

ats_utilities requires next modules and libraries

Framework structure

ats_utilities is based on OOP.

Framework structure

ats_utilities/
  ├── checker/
     └── __init__.py
  ├── cli/
     ├── cfg_cli_meta.py
     ├── cfg_cli.py
     ├── ini_cli_meta.py
     ├── ini_cli.py
     ├── __init__.py
     ├── json_cli_meta.py
     ├── json_cli.py
     ├── xml_cli_meta.py
     ├── xml_cli.py
     ├── yaml_cli_meta.py
     └── yaml_cli.py
  ├── config_io/
     ├── abs_read_conf.py
     ├── abs_write_conf.py
     ├── cfg/
        ├── cfg2object_meta.py
        ├── cfg2object.py
        ├── __init__.py
        ├── object2cfg_meta.py
        └── object2cfg.py
     ├── conf_file_meta.py
     ├── file_check.py
     ├── ini/
        ├── ini2object_meta.py
        ├── ini2object.py
        ├── __init__.py
        ├── object2ini_meta.py
        └── object2ini.py
     ├── __init__.py
     ├── json/
        ├── __init__.py
        ├── json2object_meta.py
        ├── json2object.py
        ├── object2json_meta.py
        └── object2json.py
     ├── xml/
        ├── __init__.py
        ├── object2xml_meta.py
        ├── object2xml.py
        ├── xml2object_meta.py
        └── xml2object.py
     └── yaml/
         ├── __init__.py
         ├── object2yaml_meta.py
         ├── object2yaml.py
         ├── yaml2object_meta.py
         └── yaml2object.py
  ├── console_io/
     ├── error.py
     ├── __init__.py
     ├── success.py
     ├── verbose.py
     └── warning.py
  ├── exceptions/
     ├── ats_attribute_error.py
     ├── ats_bad_call_error.py
     ├── ats_file_error.py
     ├── ats_key_error.py
     ├── ats_lookup_error.py
     ├── ats_parameter_error.py
     ├── ats_type_error.py
     ├── ats_value_error.py
     └── __init__.py
  ├── info/
     ├── ats_build_date.py
     ├── ats_info_meta.py
     ├── ats_info_ok.py
     ├── ats_licence.py
     ├── ats_name.py
     ├── ats_version.py
     └── __init__.py
  ├── __init__.py
  ├── logging/
     ├── ats_logger_file.py
     ├── ats_logger_meta.py
     ├── ats_logger_name.py
     ├── ats_logger_status.py
     └── __init__.py
  ├── option/
     └── __init__.py
  ├── pro_config/
     ├── __init__.py
     ├── pro_name.py
     └── template_dir.py
  └── splash/
     ├── ext_infrastructure.py
     ├── github_infrastructure.py
     ├── __init__.py
     ├── progress_bar.py
     ├── splash_meta.py
     ├── splash_property.py
     └── terminal_properties.py

  16 directories, 59 files

Indices and tables