Generate Named Pipe

gen_named_pipe is framework for generation Named Pipe modules.

Developed in python 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_named_pipe python checker gen_named_pipe python package github issues documentation status github contributors

Installation

gen_named_pipe python3 build

Navigate to release page download and extract release archive.

To install package type the following

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

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

# python3
pip3 install gen-named-pipe

Dependencies

gen_named_pipe requires next modules and libraries

Framework structure

gen_named_pipe is based on OOP.

Framework structure

gen_named_pipe/
    ├── conf/
       ├── gen_named_pipe.cfg
       ├── gen_named_pipe.logo
       ├── gen_named_pipe_util.cfg
       ├── project.yaml
       └── template/
           └── posix/
               ├── np_close.template
               ├── np_make.template
               ├── np_open.template
               ├── np_read.template
               ├── np.template
               └── np_write.template
    ├── __init__.py
    ├── log/
       └── gen_named_pipe.log
    ├── pro/
       ├── __init__.py
       ├── read_template.py
       └── write_template.py
    └── run/
        └── gen_named_pipe_run.py

    7 directories, 16 files

Indices and tables