gen_named_pipe

Named pipe project skeleton generator

GPL-3.0 License

Downloads
107
Stars
0
Committers
1

Generate Named Pipe

gen_named_pipe is tool for generation of 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.

Table of Contents

Installation

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

gen_named_pipe is located at pypi.org.

You can install by using pip

# python3
pip3 install gen-named-pipe
Install using build

Navigate to release page download and extract release archive.

To install gen_named_pipe 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
Install using py setup

Navigate to release page download and extract release archive.

To install gen_named_pipe locate and run setup.py with arguments

tar xvzf gen_named_pipe-x.y.z.tar.gz
cd gen_named_pipe-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_named_pipe requires next modules and libraries

Tool structure

gen_named_pipe is based on OOP

Generator 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

Code coverage

Name Stmts Miss Cover
gen_named_pipe/__init__.py 75 14 81%
gen_named_pipe/pro/__init__.py 62 2 97%
gen_named_pipe/pro/read_template.py 52 5 90%
gen_named_pipe/pro/write_template.py 54 4 93%
Total 243 25 90%

Docs

More documentation and info at

Contributing

Contributing to gen_named_pipe

Copyright and Licence

Copyright (C) 2020 - 2024 by vroncevic.github.io/gen_named_pipe

gen_named_pipe 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.