ftb-snbt-lib


Nameftb-snbt-lib JSON
Version 0.2.2 PyPI version JSON
download
home_pageNone
SummaryA python library to parse, edit, and save FTB snbt tag, which is a variant of the "vanilla" snbt tag.
upload_time2024-04-07 05:23:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords minecraft ftb snbt parser library
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ftb-snbt-lib

![GitHub Release](https://img.shields.io/github/v/release/peunsu/ftb-snbt-lib?style=for-the-badge)

A python library to parse, edit, and save FTB snbt tag.

The FTB snbt tag is a variant of the "vanilla" snbt tag. It has no commas at end of lines, different suffixes for numeric values, and no support for array data type.

This is the example of the FTB snbt tag:
```python
{
    some_tag: "some_value"
    another_tag: 1b
    list_tag: [
        "a"
        "b"
        "c"
    ]
}
```

**This library is only for the FTB snbt tag**. If you are finding the snbt library for the "vanilla" snbt tag, use [nbtlib](https://github.com/vberlier/nbtlib) by [vberlier](https://github.com/vberlier).

## Installation
The package can be installed with ``pip``.
```bash
$ pip install ftb-snbt-lib
```

## Getting Started
* Import the library.
```python
>>> import ftb_snbt_lib
```

* ``load(fp)``: Load the ftb snbt tag from a file (``fp``).
```python
>>> some_snbt = ftb_snbt_lib.load(open("tests/some_file.snbt", "r", encoding="utf-8"))
```
* The type of returned value is ``Compound``, a dictionary-like object.<br>
The ``Compound`` is containing values with **[tag data types](#data-types)** provided by this library.
```python
>>> type(some_snbt)
<class 'ftb_snbt.tag.Compound'>
>>> print(some_snbt)
Compound({'some_tag': String('some_value'), 'another_tag': Byte(1)})
```

* ``dump(tag, fp)``: Dump the ftb snbt tag to a file (``fp``).
```python
>>> ftb_snbt_lib.dump(some_snbt, open("tests/some_file_copy.snbt", "w", encoding="utf-8"))
```

* ``loads(s)``: Load the ftb snbt tag from a string ``s``.
```python
>>> another_snbt = ftb_snbt_lib.loads('''
... {
...     some_tag: "some_value"
...     another_tag: 1b
... }
... ''')
```

* ``dumps(tag)``: Dump the ftb snbt tag to a string.
```python
>>> dumped_snbt = ftb_snbt_lib.dumps(another_snbt)
>>> print(dumped_snbt)
{
    some_tag: "some_value"
    another_tag: 1b
}
```

* Edit the snbt tag. As its type is ``Compound``, it can be edited like a dictionary.<br>
The inserted or replace values should be any of **[tag data types](#data-types)** provided by this library.
```python
>>> another_snbt["some_tag"] = ftb_snbt_lib.String("another_value")
```

* When editing the ``List``, a list-like object, its elements must have **the same type**.<br>
For instance, ``List[Byte(1), Byte(2), Byte(3)]`` must contain **only** the ``Byte`` type object, so the other types like ``Integer`` or ``String`` **cannot be added or replaced** in it.

* Save the edited snbt tag to a json file.
```python
>>> import json
>>> json.dump(another_snbt, open("tests/test.json", "w", encoding="utf-8"), indent=4, ensure_ascii=False)
```

## Data Types
| Type | Description | Format | Example |
| - | - | - | - |
| Byte | A signed 8-bit integer.<br>Range: ``-128`` ~ ``127`` | ``<number>b`` | ``12b``, ``-35b`` |
| Short | A signed 16-bit integer.<br>Range: ``-32,768`` ~ ``32,767`` | ``<number>s`` | ``132s``, ``-243s`` |
| Integer | A signed 32-bit integer.<br>Range: ``-2,147,483,647`` ~ ``2,147,483,647`` | ``<number>`` | ``12345`` |
| Long | A signed 64-bit integer.<br>Range: ``9,223,372,036,854,775,808`` ~ ``9,223,372,036,854,775,807`` | ``<number>L`` | ``12345L`` |
| Float | A 32-bit, single-precision floating-point number.<br>Range: ``-3.4E+38`` ~ ``+3.4E+38`` | ``<number>f`` | ``12.345f`` |
| Double | A 64-bit, double-precision floating-point number.<br>Range: ``-1.7E+308`` ~ ``+1.7E+308`` | ``<number>d`` | ``12.345d`` |
| Bool | A boolean data type.<br>``0`` for ``false``, ``1`` for ``true``. | ``false``, ``true`` | ``true`` |
| String | A sequence of characters. | A string enclosed in **double quotes ``""``**.<br>Nested double quotes can be included within a string using a **escaping character ``\"``**. | `"Hello, World!"`,<br>`"Say \"Hello, World!\""` |
| List | An ordered list of tags.<br>The tags must be of **the same type**, determined by the first tag in the list. | Unnamed tags enclosed in square brackets and delimited by **newline** characters (``\n``). | <pre>[<br>    3.2d<br>    1.4d<br>    ...<br>]</pre> |
| Array | An ordered list of 8-bit(ByteArray), 32-bit(IntArray), 64-bit(LongArray) integers. | ``<array_prefix>;`` followed by an ordered list of tags enclosed in square brackets and delimited by **newline** characters (``\n``).<br>Valid array prefixes are ``B``(Byte), ``I``(Integer), and ``L``(Long). | <pre>[B;<br>    12b<br>    -35b<br>    ...<br>]</pre> |
| Compound | An ordered list of attribute-value pairs.<br>Each tag can be of **any type**. | Named tags enclosed in curly braces and delimited by commas or **newline** characters (``\n``).<br>The key (tag name) can be unquoted if it contains only ``0-9``, ``A-Z``, ``a-z``, ``_``, ``-``, ``.``, and ``+``. Otherwise the key should be quoted, using the format of ``String`` type. | <pre>[<br>    tag1: "string"<br>    tag2: 12b<br>    \"quoted:tag\": 3.5d<br>    ...<br>]</pre> |

## References
* [PLY - Python Lex-Yacc](https://github.com/dabeaz/ply) by [David Beazley](https://www.dabeaz.com)
* [nbtlib](https://github.com/vberlier/nbtlib) by [vberlier](https://github.com/vberlier)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ftb-snbt-lib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "minecraft, ftb, snbt, parser, library",
    "author": null,
    "author_email": "peunsu <peunsu55@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/ae/04/03979dc5ad0b5c2c08c8e2ba9485aa009379935149f7f12c197abb5898de/ftb-snbt-lib-0.2.2.tar.gz",
    "platform": null,
    "description": "# ftb-snbt-lib\n\n![GitHub Release](https://img.shields.io/github/v/release/peunsu/ftb-snbt-lib?style=for-the-badge)\n\nA python library to parse, edit, and save FTB snbt tag.\n\nThe FTB snbt tag is a variant of the \"vanilla\" snbt tag. It has no commas at end of lines, different suffixes for numeric values, and no support for array data type.\n\nThis is the example of the FTB snbt tag:\n```python\n{\n    some_tag: \"some_value\"\n    another_tag: 1b\n    list_tag: [\n        \"a\"\n        \"b\"\n        \"c\"\n    ]\n}\n```\n\n**This library is only for the FTB snbt tag**. If you are finding the snbt library for the \"vanilla\" snbt tag, use [nbtlib](https://github.com/vberlier/nbtlib) by [vberlier](https://github.com/vberlier).\n\n## Installation\nThe package can be installed with ``pip``.\n```bash\n$ pip install ftb-snbt-lib\n```\n\n## Getting Started\n* Import the library.\n```python\n>>> import ftb_snbt_lib\n```\n\n* ``load(fp)``: Load the ftb snbt tag from a file (``fp``).\n```python\n>>> some_snbt = ftb_snbt_lib.load(open(\"tests/some_file.snbt\", \"r\", encoding=\"utf-8\"))\n```\n* The type of returned value is ``Compound``, a dictionary-like object.<br>\nThe ``Compound`` is containing values with **[tag data types](#data-types)** provided by this library.\n```python\n>>> type(some_snbt)\n<class 'ftb_snbt.tag.Compound'>\n>>> print(some_snbt)\nCompound({'some_tag': String('some_value'), 'another_tag': Byte(1)})\n```\n\n* ``dump(tag, fp)``: Dump the ftb snbt tag to a file (``fp``).\n```python\n>>> ftb_snbt_lib.dump(some_snbt, open(\"tests/some_file_copy.snbt\", \"w\", encoding=\"utf-8\"))\n```\n\n* ``loads(s)``: Load the ftb snbt tag from a string ``s``.\n```python\n>>> another_snbt = ftb_snbt_lib.loads('''\n... {\n...     some_tag: \"some_value\"\n...     another_tag: 1b\n... }\n... ''')\n```\n\n* ``dumps(tag)``: Dump the ftb snbt tag to a string.\n```python\n>>> dumped_snbt = ftb_snbt_lib.dumps(another_snbt)\n>>> print(dumped_snbt)\n{\n    some_tag: \"some_value\"\n    another_tag: 1b\n}\n```\n\n* Edit the snbt tag. As its type is ``Compound``, it can be edited like a dictionary.<br>\nThe inserted or replace values should be any of **[tag data types](#data-types)** provided by this library.\n```python\n>>> another_snbt[\"some_tag\"] = ftb_snbt_lib.String(\"another_value\")\n```\n\n* When editing the ``List``, a list-like object, its elements must have **the same type**.<br>\nFor instance, ``List[Byte(1), Byte(2), Byte(3)]`` must contain **only** the ``Byte`` type object, so the other types like ``Integer`` or ``String`` **cannot be added or replaced** in it.\n\n* Save the edited snbt tag to a json file.\n```python\n>>> import json\n>>> json.dump(another_snbt, open(\"tests/test.json\", \"w\", encoding=\"utf-8\"), indent=4, ensure_ascii=False)\n```\n\n## Data Types\n| Type | Description | Format | Example |\n| - | - | - | - |\n| Byte | A signed 8-bit integer.<br>Range: ``-128`` ~ ``127`` | ``<number>b`` | ``12b``, ``-35b`` |\n| Short | A signed 16-bit integer.<br>Range: ``-32,768`` ~ ``32,767`` | ``<number>s`` | ``132s``, ``-243s`` |\n| Integer | A signed 32-bit integer.<br>Range: ``-2,147,483,647`` ~ ``2,147,483,647`` | ``<number>`` | ``12345`` |\n| Long | A signed 64-bit integer.<br>Range: ``9,223,372,036,854,775,808`` ~ ``9,223,372,036,854,775,807`` | ``<number>L`` | ``12345L`` |\n| Float | A 32-bit, single-precision floating-point number.<br>Range: ``-3.4E+38`` ~ ``+3.4E+38`` | ``<number>f`` | ``12.345f`` |\n| Double | A 64-bit, double-precision floating-point number.<br>Range: ``-1.7E+308`` ~ ``+1.7E+308`` | ``<number>d`` | ``12.345d`` |\n| Bool | A boolean data type.<br>``0`` for ``false``, ``1`` for ``true``. | ``false``, ``true`` | ``true`` |\n| String | A sequence of characters. | A string enclosed in **double quotes ``\"\"``**.<br>Nested double quotes can be included within a string using a **escaping character ``\\\"``**. | `\"Hello, World!\"`,<br>`\"Say \\\"Hello, World!\\\"\"` |\n| List | An ordered list of tags.<br>The tags must be of **the same type**, determined by the first tag in the list. | Unnamed tags enclosed in square brackets and delimited by **newline** characters (``\\n``). | <pre>[<br>    3.2d<br>    1.4d<br>    ...<br>]</pre> |\n| Array | An ordered list of 8-bit(ByteArray), 32-bit(IntArray), 64-bit(LongArray) integers. | ``<array_prefix>;`` followed by an ordered list of tags enclosed in square brackets and delimited by **newline** characters (``\\n``).<br>Valid array prefixes are ``B``(Byte), ``I``(Integer), and ``L``(Long). | <pre>[B;<br>    12b<br>    -35b<br>    ...<br>]</pre> |\n| Compound | An ordered list of attribute-value pairs.<br>Each tag can be of **any type**. | Named tags enclosed in curly braces and delimited by commas or **newline** characters (``\\n``).<br>The key (tag name) can be unquoted if it contains only ``0-9``, ``A-Z``, ``a-z``, ``_``, ``-``, ``.``, and ``+``. Otherwise the key should be quoted, using the format of ``String`` type. | <pre>[<br>    tag1: \"string\"<br>    tag2: 12b<br>    \\\"quoted:tag\\\": 3.5d<br>    ...<br>]</pre> |\n\n## References\n* [PLY - Python Lex-Yacc](https://github.com/dabeaz/ply) by [David Beazley](https://www.dabeaz.com)\n* [nbtlib](https://github.com/vberlier/nbtlib) by [vberlier](https://github.com/vberlier)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A python library to parse, edit, and save FTB snbt tag, which is a variant of the \"vanilla\" snbt tag.",
    "version": "0.2.2",
    "project_urls": {
        "documentation": "https://github.com/peunsu/ftb-snbt-lib",
        "homepage": "https://github.com/peunsu/ftb-snbt-lib",
        "repository": "https://github.com/peunsu/ftb-snbt-lib"
    },
    "split_keywords": [
        "minecraft",
        " ftb",
        " snbt",
        " parser",
        " library"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4dd061f20f392abd7d3dff4da6745b7e2f9fd735c7efc78601f41902381bb3b",
                "md5": "8986ada8606e8d805382f1d13e7597d2",
                "sha256": "83788a5404294624e52848318e06b2b9a375923eaff2285149113810d50c1db6"
            },
            "downloads": -1,
            "filename": "ftb_snbt_lib-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8986ada8606e8d805382f1d13e7597d2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 58365,
            "upload_time": "2024-04-07T05:23:09",
            "upload_time_iso_8601": "2024-04-07T05:23:09.384637Z",
            "url": "https://files.pythonhosted.org/packages/b4/dd/061f20f392abd7d3dff4da6745b7e2f9fd735c7efc78601f41902381bb3b/ftb_snbt_lib-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae0403979dc5ad0b5c2c08c8e2ba9485aa009379935149f7f12c197abb5898de",
                "md5": "07c0f366d353d347d235b6d712350ef1",
                "sha256": "a9cb107a63038bdf0049f311cdaf3a462e981dba5d4c03d0bcdef3f8ee7ab8ef"
            },
            "downloads": -1,
            "filename": "ftb-snbt-lib-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "07c0f366d353d347d235b6d712350ef1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 57366,
            "upload_time": "2024-04-07T05:23:11",
            "upload_time_iso_8601": "2024-04-07T05:23:11.093572Z",
            "url": "https://files.pythonhosted.org/packages/ae/04/03979dc5ad0b5c2c08c8e2ba9485aa009379935149f7f12c197abb5898de/ftb-snbt-lib-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-07 05:23:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "peunsu",
    "github_project": "ftb-snbt-lib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ftb-snbt-lib"
}
        
Elapsed time: 0.26620s