jdNBTExplorer


NamejdNBTExplorer JSON
Version 2.1 PyPI version JSON
download
home_page
SummaryA simple program for creating animated Images
upload_time2023-06-05 21:03:17
maintainer
docs_urlNone
author
requires_python>=3.10
licenseGPL-3
keywords jakobdev pyqt pyqt6 minecraft nbt english german
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">jdNBTExplorer</h1>

<h3 align="center">An Editor for Minecraft NBT files</h3>

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

jdNBTExplorer allows you to edit NBT files.
NBT is a custom file format used in Minecraft to store data related to your worlds.
With jdNBTExplorer, you can view and edit these files directly.

## Install

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

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

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

### From source
This is only for experienced Users and someone, who wants to package jdNBTExplorer for a Distro.
jdNBTExplorershould 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 installing jdNBTExplorer into `/usr/local`:
```shell
sudo pip install --prefix /usr/local .
sudo ./install-unix-datafiles.py --prefix /usr/local
```

## Translate
You can help translating jdNBTExplorer on [Codeberg Translate](https://translate.codeberg.org/projects/jdNBTExplorer)

## Develop
jdNBTExploreris written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.
You can run `jdNBTExplorer.py`to start jdNBTExplorer from 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 `jdNBTExplorer/ui` and compiles it to a Python class
and stores it in `jdNBTExplorer/ui_compiled`. Without running this script first, you can't start jdNBTExplorer.
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.

#### UpdateTranslators.py
This uses git to get a list of all Translators and writes it to `jdNBTExplorer/data/translators.json`.
This is used to display the translators in the About Dialog.
You need git to run this script.

#### WriteChangelogHtml.py
This read the Changelog from `deploy/page.codeberg.JakobDev.jdNBTExplorer.metainfo.xml`, converts it to HTML and writes it to `jdNBTExplorer/data/changelog.html`.
This is used to display the Changelog in the About Dialog.
You need [appstream-python](https://pypi.org/project/appstream-python) to be installed to use this script.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "jdNBTExplorer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "JakobDev,PyQt,PyQt6,Minecraft,NBT,English,German",
    "author": "",
    "author_email": "JakobDev <jakobdev@gmx.de>",
    "download_url": "https://files.pythonhosted.org/packages/d4/84/1edb6c690d18916090423cd6050343fd71df740bd12641b46f93d0c6b399/jdNBTExplorer-2.1.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">jdNBTExplorer</h1>\n\n<h3 align=\"center\">An Editor for Minecraft NBT files</h3>\n\n<p align=\"center\">\n    <img alt=\"jdNBTExplorer\" src=\"screenshots/MainWindow.png\"/>\n</p>\n\njdNBTExplorer allows you to edit NBT files.\nNBT is a custom file format used in Minecraft to store data related to your worlds.\nWith jdNBTExplorer, you can view and edit these files directly.\n\n## Install\n\n### Flatpak\nYou can get jdNBTExplorer from [Flathub](https://flathub.org/apps/page.codeberg.JakobDev.jdNBTExplorer)\n\n### AUR\nArch Users can get jdNBTExplorer from the [AUR](https://aur.archlinux.org/packages/jdnbtexplorer)\n\n### pip\nYou can install jdNBTExplorer from [PyPI](https://pypi.org/project/jdNBTExplorer) using `pip`:\n```shell\npip install jdNBTExplorer\n```\nUsing this Method, it will not include a Desktop Entry or any other Data file, so you need to run jdNBTExplorer from 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 package jdNBTExplorer for a Distro.\njdNBTExplorershould 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 installing jdNBTExplorer into `/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 translating jdNBTExplorer on [Codeberg Translate](https://translate.codeberg.org/projects/jdNBTExplorer)\n\n## Develop\njdNBTExploreris written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.\nYou can run `jdNBTExplorer.py`to start jdNBTExplorer from source and test your local changes.\nIt ships with a few scripts in the tools directory that you need to develop.\n\n#### CompileUI.py\nThis is the most important script. It will take all `.ui` files in `jdNBTExplorer/ui` and compiles it to a Python class\nand stores it in `jdNBTExplorer/ui_compiled`. Without running this script first, you can't start jdNBTExplorer.\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\n#### UpdateTranslators.py\nThis uses git to get a list of all Translators and writes it to `jdNBTExplorer/data/translators.json`.\nThis is used to display the translators in the About Dialog.\nYou need git to run this script.\n\n#### WriteChangelogHtml.py\nThis read the Changelog from `deploy/page.codeberg.JakobDev.jdNBTExplorer.metainfo.xml`, converts it to HTML and writes it to `jdNBTExplorer/data/changelog.html`.\nThis is used to display the Changelog in the About Dialog.\nYou need [appstream-python](https://pypi.org/project/appstream-python) to be installed to use this script.\n",
    "bugtrack_url": null,
    "license": "GPL-3",
    "summary": "A simple program for creating animated Images",
    "version": "2.1",
    "project_urls": {
        "Donation": "https://ko-fi.com/jakobdev",
        "Issues": "https://codeberg.org/JakobDev/jdNBTExplorer/issues",
        "Source": "https://codeberg.org/JakobDev/jdNBTExplorer",
        "Translate": "https://translate.codeberg.org/projects/jdNBTExplorer"
    },
    "split_keywords": [
        "jakobdev",
        "pyqt",
        "pyqt6",
        "minecraft",
        "nbt",
        "english",
        "german"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc4960371100973712082e91e2ee076b147f75b04d7528c5f03dcc78dd26fb3a",
                "md5": "506f414fc17e0c565dc9a384545dfb05",
                "sha256": "4d03bbcd1d7a23cdab62f4e29f8408b8f3266577048a9b538feee3a285369061"
            },
            "downloads": -1,
            "filename": "jdNBTExplorer-2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "506f414fc17e0c565dc9a384545dfb05",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 56327,
            "upload_time": "2023-06-05T21:03:15",
            "upload_time_iso_8601": "2023-06-05T21:03:15.136911Z",
            "url": "https://files.pythonhosted.org/packages/fc/49/60371100973712082e91e2ee076b147f75b04d7528c5f03dcc78dd26fb3a/jdNBTExplorer-2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4841edb6c690d18916090423cd6050343fd71df740bd12641b46f93d0c6b399",
                "md5": "ccdca5349c0d7c18b2f7a536645bfff3",
                "sha256": "ea94f17026538240f12a54f8833d66b60298746860e0b2bde0f29e5a22e2653f"
            },
            "downloads": -1,
            "filename": "jdNBTExplorer-2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ccdca5349c0d7c18b2f7a536645bfff3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 52372,
            "upload_time": "2023-06-05T21:03:17",
            "upload_time_iso_8601": "2023-06-05T21:03:17.055672Z",
            "url": "https://files.pythonhosted.org/packages/d4/84/1edb6c690d18916090423cd6050343fd71df740bd12641b46f93d0c6b399/jdNBTExplorer-2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-05 21:03:17",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": true,
    "codeberg_user": "JakobDev",
    "codeberg_project": "jdNBTExplorer",
    "lcname": "jdnbtexplorer"
}
        
Elapsed time: 0.07327s