Generates CoAP modules

gen_coap_service is tool for generation of CoAP modules.

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.

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

Installation

gen_coap_service python3 build

Navigate to release page download and extract release archive.

To install this set of modules type the following

tar xvzf gen-coap-service-x.y.z.tar.gz
cd gen-coap-service-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/gen_coap_service-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_coap_service_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_coap_service_run.py /usr/local/bin/gen_coap_service_run.py

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

#python3
pip3 install gen_coap_service

Dependencies

gen_coap_service requires next modules and libraries

Tool structure

gen_coap_service is based on OOP

Code structure

gen_coap_service/
    ├── conf/
       ├── gen_coap_service.cfg
       ├── gen_coap_service.logo
       ├── gen_coap_service_utils.cfg
       ├── project.yaml
       └── template/
           ├── coapthon/
              ├── basic
              ├── basic_resources.template
              ├── coap_client.template
              ├── coap_server.template
              └── logging.template
           ├── libcoap/
              ├── coap_client/
                 ├── autogen.template
                 ├── build/
                    └── editorconfig.template
                 ├── configure.template
                 ├── Makefile.template
                 ├── README.template
                 └── src/
                     ├── client_api.template
                     ├── main.template
                     ├── Makefile.template
                     ├── print_error.template
                     ├── print_success.template
                     ├── print_usage.template
                     ├── print_verbose.template
                     ├── process_options.template
                     └── time_handler.template
              └── coap_server/
                  ├── autogen.template
                  ├── build/
                     └── editorconfig.template
                  ├── configure.template
                  ├── Makefile.template
                  ├── README.template
                  └── src/
                      ├── get_date.template
                      ├── get_full.template
                      ├── get_time.template
                      ├── main.template
                      ├── Makefile.template
                      ├── server_api.template
                      └── time_handler.template
           ├── node_coap/
              ├── client.template
              └── server.template
           ├── template_coapthon.yaml
           ├── template_libcoap.yaml
           └── template_node_coap.yaml
    ├── __init__.py
    ├── log/
       └── gen_coap_service.log
    ├── pro/
       ├── __init__.py
       ├── read_template.py
       └── write_template.py
    └── run/
        └── gen_coap_service_run.py

    16 directories, 45 files

Indices and tables