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
- ats_utilities
- ats_utilities package
- Subpackages
- ats_utilities.checker package
- ats_utilities.cli package
- ats_utilities.config_io package
- ats_utilities.console_io package
- ats_utilities.exceptions package
- ats_utilities.info package
- ats_utilities.logging package
- ats_utilities.option package
- ats_utilities.pro_config 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
# 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/
│ └── __init__.py
├── config_io/
│ ├── cfg/
│ │ ├── cfg2object.py
│ │ ├── __init__.py
│ │ └── object2cfg.py
│ ├── file_check.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
├── 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_ok.py
│ ├── ats_licence.py
│ ├── ats_name.py
│ ├── ats_version.py
│ └── __init__.py
├── __init__.py
├── logging/
│ └── __init__.py
├── option/
│ └── __init__.py
├── pro_config/
│ ├── __init__.py
│ ├── pro_name.py
│ └── template_dir.py
├── py.typed
└── splash/
├── ext_infrastructure.py
├── github_infrastructure.py
├── __init__.py
├── progress_bar.py
├── splash_property.py
└── terminal_properties.py
16 directories, 52 files
Copyright and licence¶
Copyright (C) 2017 - 2024 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 3.x or, at your option, any later version of Python 3 you may have available.
Lets help and support PSF.