gen-coap-service


Namegen-coap-service JSON
Version 1.1.2 PyPI version JSON
download
home_pagehttps://vroncevic.github.io/gen_coap_service
SummaryGenerating CoAP Modules
upload_time2023-12-26 10:38:59
maintainer
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2020 - 2024 Free software to use and distributed it.
keywords unix linux development coap modules
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img align="right" src="https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/gen_coap_service_logo.png" width="25%">

# Generates CoAP modules

**gen_coap_service** is tool for generation of CoAP modules.

Developed in **[python](https://www.python.org/)** code: **100%**.

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](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python_checker.yml) [![gen_coap_service package checker](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_coap_service.svg)](https://github.com/vroncevic/gen_coap_service/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_coap_service.svg)](https://github.com/vroncevic/gen_coap_service/graphs/contributors)

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Installation](#installation)
    - [Install using pip](#install-using-pip)
    - [Install using build](#install-using-build)
    - [Install using py setup](#install-using-py-setup)
    - [Install using docker](#install-using-docker)
- [Dependencies](#dependencies)
- [Tool structure](#tool-structure)
- [Docs](#docs)
- [Copyright and Licence](#copyright-and-licence)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

### Installation

Used next development environment

![Development environment](https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/debtux.png)

[![gen_coap_service python3 build](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python3_build.yml)

Currently there are three ways to install package
* Install process based on using pip mechanism
* Install process based on build mechanism
* Install process based on setup.py mechanism
* Install process based on docker mechanism

##### Install using pip

Python package is located at **[pypi.org](https://pypi.org/project/gen-coap-service/)**.

You can install by using pip
```
# python3
pip3 install gen-coap-service
```

##### Install using build

Navigate to **[release page](https://github.com/vroncevic/gen_coap_service/releases)** download and extract release archive.

To install **gen-coap-service** run

```bash
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 -s --no-isolation --wheel
pip3 install dist/gen-coap-service-x.y.z-py3-none-any.whl
rm -f get-pip.py
```

##### Install using py setup

Navigate to release **[page](https://github.com/vroncevic/gen_coap_service/releases/)** download and extract release archive.

To install modules, locate and run setup.py with arguments
```
tar xvzf gen_coap_service-x.y.z.tar.gz
cd gen_coap_service-x.y.z/
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_data
python3 setup.py install_egg_info
```

##### Install using docker

You can use docker to create image/container.

### Dependencies

**gen_coap_service** requires next modules and libraries:

* [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/ats_utilities)

### Tool structure

**gen_coap_service** is based on OOP.

Generator structure:

```bash
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
```

### Docs

[![Documentation Status](https://readthedocs.org/projects/gen_coap_service/badge/?version=latest)](https://gen-coap-service.readthedocs.io/projects/gen_coap_service/en/latest/?badge=latest)

More documentation and info at:
* [gen_coap_service.readthedocs.io](https://gen-coap-service.readthedocs.io/en/latest/)
* [CoAP Service](overview.md)
* [www.python.org](https://www.python.org/)

### Copyright and Licence

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Copyright (C) 2020 - 2024 by [vroncevic.github.io/gen_coap_service](https://vroncevic.github.io/gen_coap_service)

**gen_coap_service** 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.

[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)

[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://vroncevic.github.io/gen_coap_service",
    "name": "gen-coap-service",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "Unix,Linux,Development,CoAP,Modules",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4d/f4/9b25f5dbb50a1ee7bd84bf54994b9b4c55c146c0139401cf83a171f0838c/gen_coap_service-1.1.2.tar.gz",
    "platform": "POSIX",
    "description": "<img align=\"right\" src=\"https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/gen_coap_service_logo.png\" width=\"25%\">\n\n# Generates CoAP modules\n\n**gen_coap_service** is tool for generation of CoAP modules.\n\nDeveloped in **[python](https://www.python.org/)** code: **100%**.\n\nThe README is used to introduce the modules and provide instructions on\nhow to install the modules, any machine dependencies it may have and any\nother information that should be provided before the modules are installed.\n\n[![gen_coap_service python checker](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python_checker.yml) [![gen_coap_service package checker](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_coap_service.svg)](https://github.com/vroncevic/gen_coap_service/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_coap_service.svg)](https://github.com/vroncevic/gen_coap_service/graphs/contributors)\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**\n\n- [Installation](#installation)\n    - [Install using pip](#install-using-pip)\n    - [Install using build](#install-using-build)\n    - [Install using py setup](#install-using-py-setup)\n    - [Install using docker](#install-using-docker)\n- [Dependencies](#dependencies)\n- [Tool structure](#tool-structure)\n- [Docs](#docs)\n- [Copyright and Licence](#copyright-and-licence)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n### Installation\n\nUsed next development environment\n\n![Development environment](https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/debtux.png)\n\n[![gen_coap_service python3 build](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_coap_service/actions/workflows/gen_coap_service_python3_build.yml)\n\nCurrently there are three ways to install package\n* Install process based on using pip mechanism\n* Install process based on build mechanism\n* Install process based on setup.py mechanism\n* Install process based on docker mechanism\n\n##### Install using pip\n\nPython package is located at **[pypi.org](https://pypi.org/project/gen-coap-service/)**.\n\nYou can install by using pip\n```\n# python3\npip3 install gen-coap-service\n```\n\n##### Install using build\n\nNavigate to **[release page](https://github.com/vroncevic/gen_coap_service/releases)** download and extract release archive.\n\nTo install **gen-coap-service** run\n\n```bash\ntar xvzf gen-coap-service-x.y.z.tar.gz\ncd gen-coap-service-x.y.z\n# python3\nwget https://bootstrap.pypa.io/get-pip.py\npython3 get-pip.py \npython3 -m pip install --upgrade setuptools\npython3 -m pip install --upgrade pip\npython3 -m pip install --upgrade build\npip3 install -r requirements.txt\npython3 -m build -s --no-isolation --wheel\npip3 install dist/gen-coap-service-x.y.z-py3-none-any.whl\nrm -f get-pip.py\n```\n\n##### Install using py setup\n\nNavigate to release **[page](https://github.com/vroncevic/gen_coap_service/releases/)** download and extract release archive.\n\nTo install modules, locate and run setup.py with arguments\n```\ntar xvzf gen_coap_service-x.y.z.tar.gz\ncd gen_coap_service-x.y.z/\n# python3\npip3 install -r requirements.txt\npython3 setup.py install_lib\npython3 setup.py install_data\npython3 setup.py install_egg_info\n```\n\n##### Install using docker\n\nYou can use docker to create image/container.\n\n### Dependencies\n\n**gen_coap_service** requires next modules and libraries:\n\n* [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/ats_utilities)\n\n### Tool structure\n\n**gen_coap_service** is based on OOP.\n\nGenerator structure:\n\n```bash\ngen_coap_service/\n        \u251c\u2500\u2500 conf/\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_coap_service.cfg\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_coap_service.logo\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_coap_service_utils.cfg\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 project.yaml\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 template/\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 coapthon/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 basic\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 basic_resources.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 coap_client.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 coap_server.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 logging.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 libcoap/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 coap_client/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 build/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 editorconfig.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 README.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 src/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 client_api.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 print_error.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 print_success.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 print_usage.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 print_verbose.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u251c\u2500\u2500 process_options.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u2514\u2500\u2500 time_handler.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 coap_server/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 build/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 editorconfig.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 README.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2514\u2500\u2500 src/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 get_date.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 get_full.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 get_time.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u251c\u2500\u2500 server_api.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u2514\u2500\u2500 time_handler.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 node_coap/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 client.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 server.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 template_coapthon.yaml\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 template_libcoap.yaml\n        \u2502\u00a0\u00a0     \u2514\u2500\u2500 template_node_coap.yaml\n        \u251c\u2500\u2500 __init__.py\n        \u251c\u2500\u2500 log/\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_coap_service.log\n        \u251c\u2500\u2500 pro/\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 read_template.py\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 write_template.py\n        \u2514\u2500\u2500 run/\n            \u2514\u2500\u2500 gen_coap_service_run.py\n        \n        16 directories, 45 files\n```\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen_coap_service/badge/?version=latest)](https://gen-coap-service.readthedocs.io/projects/gen_coap_service/en/latest/?badge=latest)\n\nMore documentation and info at:\n* [gen_coap_service.readthedocs.io](https://gen-coap-service.readthedocs.io/en/latest/)\n* [CoAP Service](overview.md)\n* [www.python.org](https://www.python.org/)\n\n### Copyright and Licence\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nCopyright (C) 2020 - 2024 by [vroncevic.github.io/gen_coap_service](https://vroncevic.github.io/gen_coap_service)\n\n**gen_coap_service** is free software; you can redistribute it and/or modify\nit under the same terms as Python itself, either Python version 3.x or,\nat your option, any later version of Python 3 you may have available.\n\nLets help and support PSF.\n\n[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_coap_service/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)\n\n[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)\n",
    "bugtrack_url": null,
    "license": "GPL 2020 - 2024 Free software to use and distributed it.",
    "summary": "Generating CoAP Modules",
    "version": "1.1.2",
    "project_urls": {
        "Homepage": "https://vroncevic.github.io/gen_coap_service"
    },
    "split_keywords": [
        "unix",
        "linux",
        "development",
        "coap",
        "modules"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a4cf8325307f66591a8226679ffb27628bef489a65711d1f570b43bcc06486",
                "md5": "705db155a5da6bc67d1d403ce2fabeb3",
                "sha256": "000214f1caef0992fe96ed1afc3d7bab3d283d02d762da6b5c19c31fe56ea599"
            },
            "downloads": -1,
            "filename": "gen_coap_service-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "705db155a5da6bc67d1d403ce2fabeb3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 55135,
            "upload_time": "2023-12-26T10:38:58",
            "upload_time_iso_8601": "2023-12-26T10:38:58.211650Z",
            "url": "https://files.pythonhosted.org/packages/a7/a4/cf8325307f66591a8226679ffb27628bef489a65711d1f570b43bcc06486/gen_coap_service-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4df49b25f5dbb50a1ee7bd84bf54994b9b4c55c146c0139401cf83a171f0838c",
                "md5": "b14446250e911755f9b1f710637eb9f7",
                "sha256": "e1d04773be650f22898489035eba4e07da5ffd95ee028ecc9a700d71a4132cf5"
            },
            "downloads": -1,
            "filename": "gen_coap_service-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b14446250e911755f9b1f710637eb9f7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 32499,
            "upload_time": "2023-12-26T10:38:59",
            "upload_time_iso_8601": "2023-12-26T10:38:59.727175Z",
            "url": "https://files.pythonhosted.org/packages/4d/f4/9b25f5dbb50a1ee7bd84bf54994b9b4c55c146c0139401cf83a171f0838c/gen_coap_service-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-26 10:38:59",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-coap-service"
}
        
Elapsed time: 0.15705s