gen-dbus


Namegen-dbus JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://vroncevic.github.io/gen_dbus
SummaryGenerating DBus modules
upload_time2023-12-28 19:48:33
maintainer
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2024 Free software to use and distributed it.
keywords unix linux development dbus 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_dbus/dev/docs/gen_dbus_logo.png" width="25%">

# Generate DBus

**gen_dbus** is tool for generation of [dbus](overview.md) modules.

Developed in **[python](https://www.python.org/)** 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_dbus python checker](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python_checker.yml) [![gen_dbus package checker](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_dbus.svg)](https://github.com/vroncevic/gen_dbus/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_dbus.svg)](https://github.com/vroncevic/gen_dbus/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)
- [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_dbus/dev/docs/debtux.png)

[![gen_dbus python3 build](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_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

***gen_dbus* is located at **[pypi.org](https://pypi.org/project/gen-dbus/)**.

You can install by using pip

```bash
# python3
pip3 install gen-dbus
```

##### Install using build

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

To install **gen_dbus** type the following

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

##### Install using py setup

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

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

```bash
tar xvzf gen_dbus-x.y.z.tar.gz
cd gen_dbus-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 Dockerfile to create image/container.

### Dependencies

**gen_dbus** requires next modules and libraries

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

### Tool structure

**gen_dbus** is based on OOP

Generator structure

```bash
    gen_dbus/
        ├── conf/
        │   ├── gen_dbus.cfg
        │   ├── gen_dbus.logo
        │   ├── gen_dbus_util.cfg
        │   ├── project.yaml
        │   └── template/
        │       ├── posix_c/
        │       │   ├── dbus_client/
        │       │   │   ├── AUTHORS.template
        │       │   │   ├── autogen.template
        │       │   │   ├── ChangeLog.template
        │       │   │   ├── configure.template
        │       │   │   ├── COPYING.template
        │       │   │   ├── Makefile.template
        │       │   │   ├── NEWS.template
        │       │   │   ├── README.template
        │       │   │   └── src/
        │       │   │       ├── main.template
        │       │   │       └── Makefile.template
        │       │   └── dbus_server/
        │       │       ├── AUTHORS.template
        │       │       ├── autogen.template
        │       │       ├── ChangeLog.template
        │       │       ├── configure.template
        │       │       ├── COPYING.template
        │       │       ├── Makefile.template
        │       │       ├── NEWS.template
        │       │       ├── README.template
        │       │       └── src/
        │       │           ├── main.template
        │       │           └── Makefile.template
        │       ├── posix_cxx/
        │       │   ├── dbus_client/
        │       │   │   ├── AUTHORS.template
        │       │   │   ├── autogen.template
        │       │   │   ├── ChangeLog.template
        │       │   │   ├── configure.template
        │       │   │   ├── COPYING.template
        │       │   │   ├── Makefile.template
        │       │   │   ├── NEWS.template
        │       │   │   ├── po/
        │       │   │   │   ├── ChangeLog.template
        │       │   │   │   ├── LINGUAS.template
        │       │   │   │   └── POTFILES.template
        │       │   │   ├── README.template
        │       │   │   └── src/
        │       │   │       ├── main.template
        │       │   │       └── Makefile.template
        │       │   └── dbus_server/
        │       │       ├── AUTHORS.template
        │       │       ├── autogen.template
        │       │       ├── ChangeLog.template
        │       │       ├── configure.template
        │       │       ├── COPYING.template
        │       │       ├── Makefile.template
        │       │       ├── NEWS.template
        │       │       ├── po/
        │       │       │   ├── ChangeLog.template
        │       │       │   ├── LINGUAS.template
        │       │       │   └── POTFILES.template
        │       │       ├── README.template
        │       │       └── src/
        │       │           ├── main.template
        │       │           └── Makefile.template
        │       └── posix_py/
        │           ├── dbus_client/
        │           │   ├── AUTHORS.template
        │           │   ├── autogen.template
        │           │   ├── ChangeLog.template
        │           │   ├── configure.template
        │           │   ├── COPYING.template
        │           │   ├── Makefile.template
        │           │   ├── NEWS.template
        │           │   ├── README.template
        │           │   └── src/
        │           │       ├── dbus_client.template
        │           │       └── Makefile.template
        │           └── dbus_server/
        │               ├── AUTHORS.template
        │               ├── autogen.template
        │               ├── ChangeLog.template
        │               ├── configure.template
        │               ├── COPYING.template
        │               ├── Makefile.template
        │               ├── NEWS.template
        │               ├── README.template
        │               └── src/
        │                   ├── dbus_server.template
        │                   └── Makefile.template
        ├── __init__.py
        ├── log/
        │   └── gen_dbus.log
        ├── pro/
        │   ├── __init__.py
        │   ├── read_template.py
        │   └── write_template.py
        └── run/
            └── gen_dbus_run.py
        
        23 directories, 76 files
```

### Docs

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

More documentation and info at

* [gen_dbus.readthedocs.io](https://gen-dbus.readthedocs.io/en/latest/)
* [www.python.org](https://www.python.org/)

### Contributing

[Contributing to gen_dbus](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) 2021 - 2024 by [vroncevic.github.io/gen_dbus](https://vroncevic.github.io/gen_dbus)

**gen_dbus** 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_dbus/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_dbus",
    "name": "gen-dbus",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "Unix,Linux,Development,DBus,Modules",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/00/10/cd234ecaed3b1714a56feb6759e832b2f53fd0f313854878ae1c01605a7d/gen_dbus-1.1.0.tar.gz",
    "platform": "POSIX",
    "description": "<img align=\"right\" src=\"https://raw.githubusercontent.com/vroncevic/gen_dbus/dev/docs/gen_dbus_logo.png\" width=\"25%\">\n\n# Generate DBus\n\n**gen_dbus** is tool for generation of [dbus](overview.md) modules.\n\nDeveloped in **[python](https://www.python.org/)** code.\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_dbus python checker](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python_checker.yml) [![gen_dbus package checker](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_dbus.svg)](https://github.com/vroncevic/gen_dbus/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_dbus.svg)](https://github.com/vroncevic/gen_dbus/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- [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_dbus/dev/docs/debtux.png)\n\n[![gen_dbus python3 build](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_dbus/actions/workflows/gen_dbus_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\n***gen_dbus* is located at **[pypi.org](https://pypi.org/project/gen-dbus/)**.\n\nYou can install by using pip\n\n```bash\n# python3\npip3 install gen-dbus\n```\n\n##### Install using build\n\nNavigate to release **[page](https://github.com/vroncevic/gen_dbus/releases/)** download and extract release archive.\n\nTo install **gen_dbus** type the following\n\n```bash\ntar xvzf gen_dbus-x.y.z.tar.gz\ncd gen_dbus-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_dbus-*-py3-none-any.whl\nrm -f get-pip.py\nchmod 755 /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_dbus_run.py\nln -s /usr/local/lib/python3.9/dist-packages/usr/local/bin/gen_dbus_run.py /usr/local/bin/gen_dbus_run.py\n```\n\n##### Install using py setup\n\nNavigate to release **[page](https://github.com/vroncevic/gen_dbus/releases/)** download and extract release archive.\n\nTo install **gen_dbus** locate and run setup.py with arguments\n\n```bash\ntar xvzf gen_dbus-x.y.z.tar.gz\ncd gen_dbus-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 Dockerfile to create image/container.\n\n### Dependencies\n\n**gen_dbus** requires next modules and libraries\n\n* [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/gen_dbus)\n\n### Tool structure\n\n**gen_dbus** is based on OOP\n\nGenerator structure\n\n```bash\n    gen_dbus/\n        \u251c\u2500\u2500 conf/\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_dbus.cfg\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_dbus.logo\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_dbus_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 posix_c/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 dbus_client/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 AUTHORS.template\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 ChangeLog.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 COPYING.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 NEWS.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 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u2514\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 dbus_server/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 AUTHORS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 COPYING.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 NEWS.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 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u2514\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 posix_cxx/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 dbus_client/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 AUTHORS.template\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 ChangeLog.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 COPYING.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 NEWS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 po/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 LINGUAS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 POTFILES.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 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2502\u00a0\u00a0     \u2514\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 dbus_server/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 AUTHORS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 COPYING.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 NEWS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u251c\u2500\u2500 po/\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u251c\u2500\u2500 LINGUAS.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0     \u2502\u00a0\u00a0 \u2514\u2500\u2500 POTFILES.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 main.template\n        \u2502\u00a0\u00a0     \u2502\u00a0\u00a0         \u2514\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u2514\u2500\u2500 posix_py/\n        \u2502\u00a0\u00a0         \u251c\u2500\u2500 dbus_client/\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 AUTHORS.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 COPYING.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0 \u251c\u2500\u2500 NEWS.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 dbus_client.template\n        \u2502\u00a0\u00a0         \u2502\u00a0\u00a0     \u2514\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0         \u2514\u2500\u2500 dbus_server/\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 AUTHORS.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 autogen.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 ChangeLog.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 configure.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 COPYING.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 NEWS.template\n        \u2502\u00a0\u00a0             \u251c\u2500\u2500 README.template\n        \u2502\u00a0\u00a0             \u2514\u2500\u2500 src/\n        \u2502\u00a0\u00a0                 \u251c\u2500\u2500 dbus_server.template\n        \u2502\u00a0\u00a0                 \u2514\u2500\u2500 Makefile.template\n        \u251c\u2500\u2500 __init__.py\n        \u251c\u2500\u2500 log/\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_dbus.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_dbus_run.py\n        \n        23 directories, 76 files\n```\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen_dbus/badge/?version=latest)](https://gen-dbus.readthedocs.io/en/latest/?badge=latest)\n\nMore documentation and info at\n\n* [gen_dbus.readthedocs.io](https://gen-dbus.readthedocs.io/en/latest/)\n* [www.python.org](https://www.python.org/)\n\n### Contributing\n\n[Contributing to gen_dbus](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) 2021 - 2024 by [vroncevic.github.io/gen_dbus](https://vroncevic.github.io/gen_dbus)\n\n**gen_dbus** 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_dbus/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 2024 Free software to use and distributed it.",
    "summary": "Generating DBus modules",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://vroncevic.github.io/gen_dbus"
    },
    "split_keywords": [
        "unix",
        "linux",
        "development",
        "dbus",
        "modules"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bfa62856b0cd07b9451f13924240e8e462b58d5343f717ea4d3a3843c0aedc8",
                "md5": "a2fcecc327a79768c684410a94b5eb21",
                "sha256": "e37810af69bc5ef0fdab0b31c531a71ed66db7d4293b79169cf84f4bc34ab0da"
            },
            "downloads": -1,
            "filename": "gen_dbus-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a2fcecc327a79768c684410a94b5eb21",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 27519,
            "upload_time": "2023-12-28T19:48:32",
            "upload_time_iso_8601": "2023-12-28T19:48:32.058905Z",
            "url": "https://files.pythonhosted.org/packages/6b/fa/62856b0cd07b9451f13924240e8e462b58d5343f717ea4d3a3843c0aedc8/gen_dbus-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0010cd234ecaed3b1714a56feb6759e832b2f53fd0f313854878ae1c01605a7d",
                "md5": "3781315aecd0f913ae7761c1998da6ed",
                "sha256": "79529a80893e12cd01575e6a9f6193576c41bcbdfc80b8778458a9eaf7e8737e"
            },
            "downloads": -1,
            "filename": "gen_dbus-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3781315aecd0f913ae7761c1998da6ed",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 113625,
            "upload_time": "2023-12-28T19:48:33",
            "upload_time_iso_8601": "2023-12-28T19:48:33.719122Z",
            "url": "https://files.pythonhosted.org/packages/00/10/cd234ecaed3b1714a56feb6759e832b2f53fd0f313854878ae1c01605a7d/gen_dbus-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-28 19:48:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-dbus"
}
        
Elapsed time: 0.17636s