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.
Contents
- ATS Utilities
- ats_utilities
- ats_utilities package
- Subpackages
- ats_utilities.abstract package
- ats_utilities.checker package
- ats_utilities.cli package
- ats_utilities.config_io package
- ats_utilities.console_io package
- ats_utilities.cooperative package
- ats_utilities.exceptions package
- ats_utilities.final package
- ats_utilities.info package
- ats_utilities.logging package
- ats_utilities.option package
- ats_utilities.register package
- ats_utilities.singleton package
- ats_utilities.splash package
- Module contents
- Subpackages
- ats_utilities package
InstallationΒΆ
Used next development environment
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
# python2
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
python2 get-pip.py
python2 -m pip install --upgrade setuptools
python2 -m pip install --upgrade pip
python2 -m pip install --upgrade build
pip2 install -r requirements.txt
python2 -m build --no-isolation --wheel
pip2 install dist/ats_utilities-x.y.z-py2-none-any.whl
rm -f get-pip.py
# 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/
# python2
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
python2 get-pip.py
python2 -m pip install --upgrade setuptools
python2 -m pip install --upgrade pip
python2 -m pip install --upgrade build
pip2 install -r requirements.txt
python2 setup.py install_lib
python2 setup.py install_egg_info
# 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 π¦
# python2
pip2 install ats_utilities
# 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/
βββ abstract/
βΒ Β βββ __init__.py
βββ checker/
βΒ Β βββ __init__.py
βββ cli/
βΒ Β βββ cfg_cli.py
βΒ Β βββ ini_cli.py
βΒ Β βββ __init__.py
βΒ Β βββ json_cli.py
βΒ Β βββ xml_cli.py
βΒ Β βββ yaml_cli.py
βββ config_io/
βΒ Β βββ base_check.py
βΒ Β βββ base_read.py
βΒ Β βββ base_write.py
βΒ Β βββ cfg/
βΒ Β βΒ Β βββ cfg2object.py
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ object2cfg.py
βΒ Β βββ ini/
βΒ Β βΒ Β βββ ini2object.py
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ object2ini.py
βΒ Β βββ __init__.py
βΒ Β βββ json/
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ json2object.py
βΒ Β βΒ Β βββ object2json.py
βΒ Β βββ xml/
βΒ Β βΒ Β βββ __init__.py
βΒ Β βΒ Β βββ object2xml.py
βΒ Β βΒ Β βββ xml2object.py
βΒ Β βββ yaml/
βΒ Β βββ __init__.py
βΒ Β βββ object2yaml.py
βΒ Β βββ yaml2object.py
βββ console_io/
βΒ Β βββ error.py
βΒ Β βββ __init__.py
βΒ Β βββ success.py
βΒ Β βββ verbose.py
βΒ Β βββ warning.py
βββ cooperative/
βΒ Β βββ __init__.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
βββ final/
βΒ Β βββ __init__.py
βββ info/
βΒ Β βββ ats_build_date.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_name.py
βΒ Β βββ ats_logger_status.py
βΒ Β βββ __init__.py
βββ option/
βΒ Β βββ __init__.py
βββ register/
βΒ Β βββ __init__.py
βββ singleton/
βΒ Β βββ base.py
βΒ Β βββ functional.py
βΒ Β βββ __init__.py
βΒ Β βββ meta.py
βΒ Β βββ meta_thread.py
βββ splash/
βββ ext_infrastructure.py
βββ github_infrastructure.py
βββ __init__.py
βββ progress_bar.py
βββ splash_property.py
βββ terminal_properties.py
Copyright and licenceΒΆ
Copyright (C) 2017 by vroncevic.github.io/ats_utilities
ats_utilities is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 2.x/3.x or, at your option, any later version of Python 3 you may have available.
π π π Lets help and support PSF.