Generate shared file modules

gen_shared_file is toolset for generation of shared file skeleton for development embedded applications.

Developed in python code.

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

gen_shared_file python checker gen_shared_file python package github issues documentation status github contributors

Installation

gen_shared_file python3 build

Navigate to release page download and extract release archive.

To install gen_shared_file type the following

tar xvzf gen_shared_file-x.y.z.tar.gz
cd gen_shared_file-x.y.z/
#python3
python3 setup.py install_lib
python3 setup.py install_data
python3 setup.py install_egg_info

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

#python3
pip3 install gen-shared-file

Dependencies

gen_shared_file tool-module requires other modules and libraries

Tool structure

gen_shared_file is based on Template mechanism

Generator structure

gen_shared_file/
      ├── conf/
         ├── gen_shared_file.logo
         ├── gen_shared_file.cfg
         ├── gen_shared_file_util.cfg
         ├── project.yaml
         └── template/
             ├── shared_file.template
             ├── shared_file_lock.template
             ├── shared_file_unlock.template
             ├── write_shared_file.template
             └── read_shared_file.template
      ├── __init__.py
      ├── log/
         └── gen_shared_file.log
      ├── pro/
         ├── __init__.py
         ├── read_template.py
         └── write_template.py
      └── run/
          └── gen_shared_file_run.py

Indices and tables