jdDBusDebugger


NamejdDBusDebugger JSON
Version 3.1 PyPI version JSON
download
home_pageNone
SummaryAn advanced D-Bus Debugger
upload_time2024-04-24 17:40:49
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseGPL-3
keywords jakobdev linux dbus
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">jdDBusDebugger</h1>

<h3 align="center">An advanced D-Bus Debugger</h3>

<p align="center">
    <img alt="jdDBusDebugger" src="screenshots/MainWindow.png"/>
</p>

jdDBusDebugger allows you to debug your D-Bus Interfaces with a easy to use GUI.Everything can be done from the GUI. No need to learn commandline tools.

jdDBusDebugger has macro support. It allows you to save all that you have done and repeat it to speed up your tests. You can also generate a shell script from your macros.

## Install

### Flatpak
You can get jdDBusDebugger from [Flathub](https://flathub.org/apps/details/page.codeberg.JakobDev.jdDBusDebugger)

### AUR
Arch Users can get jdDBusDebugger from the [AUR](https://aur.archlinux.org/packages/jddbusdebugger)

### pip
You can install jdDBusDebugger from [PyPI](https://pypi.org/project/jdDBusDebugger) using `pip`:
```shell
pip install jdDBusDebugger
```
Using this Method, it will not include a Desktop Entry or any other Data file, so you need to runjdDBusDebuggerfrom the Command Line.
Use this only, when nothing else works.

#### From source
This is only for experienced Users and someone, who wants to packagejdDBusDebuggerfor a Distro.
jdDBusDebugger should be installed as a Python package.
You can use `pip` or any other tool that can handle Python packages.
YOu need to have `lrelease` installed to build the Package.
After that, you should run `install-unix-datafiles.py` which wil install things like the Desktop Entry or the Icon in the correct place.
It defaults to `/usr`, but you can change it with the `--prefix` argument.
It also applies the translation to this files.
You need gettext installed to run `install-unix-datafiles.py`.

Here's a example of installingjdDBusDebuggerinto `/usr/local`:
```shell
sudo pip install --prefix /usr/local .
sudo ./install-unix-datafiles.py --prefix /usr/local
```

## Translate
You can help translatingjdDBusDebuggeron [Codeberg Translate](https://translate.codeberg.org/projects/jdDBusDebugger)

## Develop
jdDBusDebugger is written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.
You can run `jdDBusDebugger.py`to startjdDBusDebuggerfrom source and test your local changes.
It ships with a few scripts in the tools directory that you need to develop.


#### CompileUI.py
This is the most important script. It will take all `.ui` files in `jdDBusDebugger/ui` and compiles it to a Python class
and stores it in `jdDBusDebugger/ui_compiled`. Without running this script first, you can't start jdDBusDebugger.
You need to rerun it every time you changed or added a `.ui` file.

#### BuildTranslations.py
This script takes all `.ts` files and compiles it to `.qm` files.
The `.ts` files are containing the translation source and are being used during the translation process.
The `.qm` contains the compiled translation and are being used by the Program.
You need to compile a `.ts` file to a `.qm` file to see the translations in the Program.

#### UpdateTranslations.py
This regenerates the `.ts` files. You need to run it, when you changed something in the source code.
The `.ts` files are contains the line in the source, where the string to translate appears,
so make sure you run it even when you don't changed a translatable string, so the location is correct.

####  UpdateUnixDataTranslations.py
This regenerates the translation files in `deploy/translations`. these files contains the translations for the Desktop Entry and the AppStream File.
It uses gettext, as it is hard to translate this using Qt.
These files just exists to integrate the translation with Weblate, because Weblate can't translate the Desktop Entry and the AppStream file.
Make sure you run this when you edited one of these files.
You need to have gettext installed to use it.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "jdDBusDebugger",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "JakobDev, Linux, DBus",
    "author": null,
    "author_email": "JakobDev <jakobdev@gmx.de>",
    "download_url": "https://files.pythonhosted.org/packages/db/d8/05d5f11734d14c4da408b41e42bf43034a7e66e3eb072f14b1639dfee66e/jddbusdebugger-3.1.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">jdDBusDebugger</h1>\n\n<h3 align=\"center\">An advanced D-Bus Debugger</h3>\n\n<p align=\"center\">\n    <img alt=\"jdDBusDebugger\" src=\"screenshots/MainWindow.png\"/>\n</p>\n\njdDBusDebugger allows you to debug your D-Bus Interfaces with a easy to use GUI.Everything can be done from the GUI. No need to learn commandline tools.\n\njdDBusDebugger has macro support. It allows you to save all that you have done and repeat it to speed up your tests. You can also generate a shell script from your macros.\n\n## Install\n\n### Flatpak\nYou can get jdDBusDebugger from [Flathub](https://flathub.org/apps/details/page.codeberg.JakobDev.jdDBusDebugger)\n\n### AUR\nArch Users can get jdDBusDebugger from the [AUR](https://aur.archlinux.org/packages/jddbusdebugger)\n\n### pip\nYou can install jdDBusDebugger from [PyPI](https://pypi.org/project/jdDBusDebugger) using `pip`:\n```shell\npip install jdDBusDebugger\n```\nUsing this Method, it will not include a Desktop Entry or any other Data file, so you need to runjdDBusDebuggerfrom the Command Line.\nUse this only, when nothing else works.\n\n#### From source\nThis is only for experienced Users and someone, who wants to packagejdDBusDebuggerfor a Distro.\njdDBusDebugger should be installed as a Python package.\nYou can use `pip` or any other tool that can handle Python packages.\nYOu need to have `lrelease` installed to build the Package.\nAfter that, you should run `install-unix-datafiles.py` which wil install things like the Desktop Entry or the Icon in the correct place.\nIt defaults to `/usr`, but you can change it with the `--prefix` argument.\nIt also applies the translation to this files.\nYou need gettext installed to run `install-unix-datafiles.py`.\n\nHere's a example of installingjdDBusDebuggerinto `/usr/local`:\n```shell\nsudo pip install --prefix /usr/local .\nsudo ./install-unix-datafiles.py --prefix /usr/local\n```\n\n## Translate\nYou can help translatingjdDBusDebuggeron [Codeberg Translate](https://translate.codeberg.org/projects/jdDBusDebugger)\n\n## Develop\njdDBusDebugger is written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.\nYou can run `jdDBusDebugger.py`to startjdDBusDebuggerfrom source and test your local changes.\nIt ships with a few scripts in the tools directory that you need to develop.\n\n\n#### CompileUI.py\nThis is the most important script. It will take all `.ui` files in `jdDBusDebugger/ui` and compiles it to a Python class\nand stores it in `jdDBusDebugger/ui_compiled`. Without running this script first, you can't start jdDBusDebugger.\nYou need to rerun it every time you changed or added a `.ui` file.\n\n#### BuildTranslations.py\nThis script takes all `.ts` files and compiles it to `.qm` files.\nThe `.ts` files are containing the translation source and are being used during the translation process.\nThe `.qm` contains the compiled translation and are being used by the Program.\nYou need to compile a `.ts` file to a `.qm` file to see the translations in the Program.\n\n#### UpdateTranslations.py\nThis regenerates the `.ts` files. You need to run it, when you changed something in the source code.\nThe `.ts` files are contains the line in the source, where the string to translate appears,\nso make sure you run it even when you don't changed a translatable string, so the location is correct.\n\n####  UpdateUnixDataTranslations.py\nThis regenerates the translation files in `deploy/translations`. these files contains the translations for the Desktop Entry and the AppStream File.\nIt uses gettext, as it is hard to translate this using Qt.\nThese files just exists to integrate the translation with Weblate, because Weblate can't translate the Desktop Entry and the AppStream file.\nMake sure you run this when you edited one of these files.\nYou need to have gettext installed to use it.\n",
    "bugtrack_url": null,
    "license": "GPL-3",
    "summary": "An advanced D-Bus Debugger",
    "version": "3.1",
    "project_urls": {
        "Donation": "https://ko-fi.com/jakobdev",
        "Issues": "https://codeberg.org/JakobDev/jdDBusDebugger/issues",
        "Source": "https://codeberg.org/JakobDev/jdDBusDebugger",
        "Translate": "https://translate.codeberg.org/projects/jdDBusDebugger"
    },
    "split_keywords": [
        "jakobdev",
        " linux",
        " dbus"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ac3bf931b21a6e35d9b462c69044fff24abb6977a46c802b9b790797aa9fbe1",
                "md5": "ce7ceb185800b09df0a94a4a8946b340",
                "sha256": "06b64336f8eb8e120513507ea346430c3b8ac239dc009a551e17d6bc0f7fe401"
            },
            "downloads": -1,
            "filename": "jdDBusDebugger-3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ce7ceb185800b09df0a94a4a8946b340",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 211983,
            "upload_time": "2024-04-24T17:40:47",
            "upload_time_iso_8601": "2024-04-24T17:40:47.738738Z",
            "url": "https://files.pythonhosted.org/packages/9a/c3/bf931b21a6e35d9b462c69044fff24abb6977a46c802b9b790797aa9fbe1/jdDBusDebugger-3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbd805d5f11734d14c4da408b41e42bf43034a7e66e3eb072f14b1639dfee66e",
                "md5": "f7e6f920caab3870fb647f305c09665d",
                "sha256": "163a4eea7c45e8bbc3bf77f12554547957cbfcc1e17a6c5afa9080524f660e76"
            },
            "downloads": -1,
            "filename": "jddbusdebugger-3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f7e6f920caab3870fb647f305c09665d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 186566,
            "upload_time": "2024-04-24T17:40:49",
            "upload_time_iso_8601": "2024-04-24T17:40:49.947870Z",
            "url": "https://files.pythonhosted.org/packages/db/d8/05d5f11734d14c4da408b41e42bf43034a7e66e3eb072f14b1639dfee66e/jddbusdebugger-3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-24 17:40:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": true,
    "codeberg_user": "JakobDev",
    "codeberg_project": "jdDBusDebugger",
    "lcname": "jddbusdebugger"
}
        
Elapsed time: 0.25298s