gen-unix-domain-socket


Namegen-unix-domain-socket JSON
Version 1.0.5 PyPI version JSON
download
home_pagehttps://vroncevic.github.io/gen_unix_domain_socket
SummaryGenerating Unix Domain Socket
upload_time2024-07-09 19:20:10
maintainerNone
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2017 - 2024 Free software to use and distributed it.
keywords unix linux development unix domain socket modules
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Generate Unix Domain Socket

<img align="right" src="https://raw.githubusercontent.com/vroncevic/gen_unix_domain_socket/dev/docs/gen_unix_domain_socket_logo.png" width="25%">

**gen_unix_domain_socket** is tool for generation of unix domain socket.

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_unix_domain_socket python checker](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python_checker.yml) [![gen_unix_domain_socket package checker](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_unix_domain_socket.svg)](https://github.com/vroncevic/gen_unix_domain_socket/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_unix_domain_socket.svg)](https://github.com/vroncevic/gen_unix_domain_socket/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)
- [Code coverage](#code-coverage)
- [Docs](#docs)
- [Contributing](#contributing)
- [Copyright and Licence](#copyright-and-licence)

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

### Installation

Used next development environment

![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_unix_domain_socket/dev/docs/debtux.png)

[![gen_unix_domain_socket python3 build](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_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 is located at **[pypi.org](https://pypi.org/project/gen-unix-domain-socket/)**.

You can install by using pip

```bash
#python3
pip3 install gen-unix-domain-socket
```

##### Install using build

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

To install **gen_unix_domain_socket** type the following

```bash
tar xvzf gen_unix_domain_socket-x.y.z.tar.gz
cd gen_unix_domain_socket-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_unix_domain_socket-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_unix_domain_socket_run.py
ln -s /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_unix_domain_socket_run.py /usr/local/bin/gen_unix_domain_socket_run.py
```

##### Install using py setup

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

To install **gen_unix_domain_socket** locate and run setup.py with arguments

```bash
tar xvzf gen_unix_domain_socket-x.y.z.tar.gz
cd gen_unix_domain_socket-x.y.z
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
```

##### Install using docker

You can use Dockerfile to create image/container.

### Dependencies

**gen_unix_domain_socket** tool requires other modules/libraries

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

### Tool structure

**gen_unix_domain_socket** is based on OOP

Generator structure

```bash
    gen_unix_domain_socket/
            ├── conf/
            │   ├── gen_unix_domain_socket.cfg
            │   ├── gen_unix_domain_socket.logo
            │   ├── gen_unix_domain_socket_util.cfg
            │   ├── project.yaml
            │   └── template/
            │       ├── uds_accept.template
            │       ├── uds_bind.template
            │       ├── uds_connect.template
            │       ├── uds_fatal_error.template
            │       ├── uds_listen.template
            │       ├── uds_read.template
            │       ├── uds_socket.template
            │       ├── uds.template
            │       ├── uds_unlink.template
            │       └── uds_write.template
            ├── __init__.py
            ├── log/
            │   └── gen_unix_domain_socket.log
            ├── pro/
            │   ├── __init__.py
            │   ├── read_template.py
            │   └── write_template.py
            ├── py.typed
            └── run/
                └── gen_unix_domain_socket_run.py

    6 directories, 21 files
```

### Code coverage

| Name | Stmts | Miss | Cover |
|------|-------|------|-------|
| `gen_unix_domain_socket/__init__.py` | 71 | 14 | 80% |
| `gen_unix_domain_socket/pro/__init__.py` | 60 | 6 | 90% |
| `gen_unix_domain_socket/pro/read_template.py` | 43 | 4 | 91% |
| `gen_unix_domain_socket/pro/write_template.py` | 51 | 5 | 90% |
| **Total** | 225 | 29 | 87% |

### Docs

[![Documentation Status](https://readthedocs.org/projects/gen-unix-domain-socket/badge/?version=latest)](https://gen-unix-domain-socket.readthedocs.io/en/latest/?badge=latest)

More documentation and info at

* [gen_unix_domain_socket.readthedocs.io](https://gen-unix-domain-socket.readthedocs.io)
* [www.python.org](https://www.python.org/)

### Contributing

[Contributing to gen_unix_domain_socket](CONTRIBUTING.md)

### 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) 2017 - 2024 by [vroncevic.github.io/gen_unix_domain_socket](https://vroncevic.github.io/gen_unix_domain_socket/)

**gen_unix_domain_socket** 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_unix_domain_socket/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_unix_domain_socket",
    "name": "gen-unix-domain-socket",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "Unix, Linux, Development, Unix Domain Socket, Modules",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/12/9c/6fee09fb2e1e1fd075a122aa6773ddca330536b3f71c98b7a9355ec3cc63/gen_unix_domain_socket-1.0.5.tar.gz",
    "platform": "POSIX",
    "description": "# Generate Unix Domain Socket\n\n<img align=\"right\" src=\"https://raw.githubusercontent.com/vroncevic/gen_unix_domain_socket/dev/docs/gen_unix_domain_socket_logo.png\" width=\"25%\">\n\n**gen_unix_domain_socket** is tool for generation of unix domain socket.\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_unix_domain_socket python checker](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python_checker.yml) [![gen_unix_domain_socket package checker](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_unix_domain_socket.svg)](https://github.com/vroncevic/gen_unix_domain_socket/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_unix_domain_socket.svg)](https://github.com/vroncevic/gen_unix_domain_socket/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- [Code coverage](#code-coverage)\n- [Docs](#docs)\n- [Contributing](#contributing)\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![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_unix_domain_socket/dev/docs/debtux.png)\n\n[![gen_unix_domain_socket python3 build](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_unix_domain_socket/actions/workflows/gen_unix_domain_socket_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 is located at **[pypi.org](https://pypi.org/project/gen-unix-domain-socket/)**.\n\nYou can install by using pip\n\n```bash\n#python3\npip3 install gen-unix-domain-socket\n```\n\n##### Install using build\n\nNavigate to release **[page](https://github.com/vroncevic/gen_unix_domain_socket/releases/)** download and extract release archive.\n\nTo install **gen_unix_domain_socket** type the following\n\n```bash\ntar xvzf gen_unix_domain_socket-x.y.z.tar.gz\ncd gen_unix_domain_socket-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 --no-isolation --wheel\npip3 install ./dist/gen_unix_domain_socket-*-py3-none-any.whl\nrm -f get-pip.py\nchmod 755 /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_unix_domain_socket_run.py\nln -s /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_unix_domain_socket_run.py /usr/local/bin/gen_unix_domain_socket_run.py\n```\n\n##### Install using py setup\n\nNavigate to **[release page](https://github.com/vroncevic/gen_unix_domain_socket/releases)** download and extract release archive.\n\nTo install **gen_unix_domain_socket** locate and run setup.py with arguments\n\n```bash\ntar xvzf gen_unix_domain_socket-x.y.z.tar.gz\ncd gen_unix_domain_socket-x.y.z\n# python3\npip3 install -r requirements.txt\npython3 setup.py install_lib\npython3 setup.py install_egg_info\n```\n\n##### Install using docker\n\nYou can use Dockerfile to create image/container.\n\n### Dependencies\n\n**gen_unix_domain_socket** tool requires other modules/libraries\n\n- [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/gen_unix_domain_socket)\n\n### Tool structure\n\n**gen_unix_domain_socket** is based on OOP\n\nGenerator structure\n\n```bash\n    gen_unix_domain_socket/\n            \u251c\u2500\u2500 conf/\n            \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_unix_domain_socket.cfg\n            \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_unix_domain_socket.logo\n            \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_unix_domain_socket_util.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 uds_accept.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_bind.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_connect.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_fatal_error.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_listen.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_read.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_socket.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds.template\n            \u2502\u00a0\u00a0     \u251c\u2500\u2500 uds_unlink.template\n            \u2502\u00a0\u00a0     \u2514\u2500\u2500 uds_write.template\n            \u251c\u2500\u2500 __init__.py\n            \u251c\u2500\u2500 log/\n            \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_unix_domain_socket.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            \u251c\u2500\u2500 py.typed\n            \u2514\u2500\u2500 run/\n                \u2514\u2500\u2500 gen_unix_domain_socket_run.py\n\n    6 directories, 21 files\n```\n\n### Code coverage\n\n| Name | Stmts | Miss | Cover |\n|------|-------|------|-------|\n| `gen_unix_domain_socket/__init__.py` | 71 | 14 | 80% |\n| `gen_unix_domain_socket/pro/__init__.py` | 60 | 6 | 90% |\n| `gen_unix_domain_socket/pro/read_template.py` | 43 | 4 | 91% |\n| `gen_unix_domain_socket/pro/write_template.py` | 51 | 5 | 90% |\n| **Total** | 225 | 29 | 87% |\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen-unix-domain-socket/badge/?version=latest)](https://gen-unix-domain-socket.readthedocs.io/en/latest/?badge=latest)\n\nMore documentation and info at\n\n* [gen_unix_domain_socket.readthedocs.io](https://gen-unix-domain-socket.readthedocs.io)\n* [www.python.org](https://www.python.org/)\n\n### Contributing\n\n[Contributing to gen_unix_domain_socket](CONTRIBUTING.md)\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) 2017 - 2024 by [vroncevic.github.io/gen_unix_domain_socket](https://vroncevic.github.io/gen_unix_domain_socket/)\n\n**gen_unix_domain_socket** 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_unix_domain_socket/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 2017 - 2024 Free software to use and distributed it.",
    "summary": "Generating Unix Domain Socket",
    "version": "1.0.5",
    "project_urls": {
        "Homepage": "https://vroncevic.github.io/gen_unix_domain_socket"
    },
    "split_keywords": [
        "unix",
        " linux",
        " development",
        " unix domain socket",
        " modules"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e11f0845f387e79f2be534ca6eaac366b02d0591b7635a1901c4779cfc7ead96",
                "md5": "f232c22e8e38ca62407c748933208e0d",
                "sha256": "cde7cfce6f61ee6e74e0ab7e036b198b12ac8a5d5a9e121281196efad2bc310e"
            },
            "downloads": -1,
            "filename": "gen_unix_domain_socket-1.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f232c22e8e38ca62407c748933208e0d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 42400,
            "upload_time": "2024-07-09T19:20:09",
            "upload_time_iso_8601": "2024-07-09T19:20:09.223945Z",
            "url": "https://files.pythonhosted.org/packages/e1/1f/0845f387e79f2be534ca6eaac366b02d0591b7635a1901c4779cfc7ead96/gen_unix_domain_socket-1.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "129c6fee09fb2e1e1fd075a122aa6773ddca330536b3f71c98b7a9355ec3cc63",
                "md5": "9d0c9705a09fab7c1cde3623d823b6af",
                "sha256": "1a568b4d9ddbf57b0754d319cb8e7ff88de8fa949e00ae8a42780895cad9aaeb"
            },
            "downloads": -1,
            "filename": "gen_unix_domain_socket-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "9d0c9705a09fab7c1cde3623d823b6af",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 29804,
            "upload_time": "2024-07-09T19:20:10",
            "upload_time_iso_8601": "2024-07-09T19:20:10.740793Z",
            "url": "https://files.pythonhosted.org/packages/12/9c/6fee09fb2e1e1fd075a122aa6773ddca330536b3f71c98b7a9355ec3cc63/gen_unix_domain_socket-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-09 19:20:10",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-unix-domain-socket"
}
        
Elapsed time: 0.31217s