Metadata-Version: 2.4
Name: mcitemlib
Version: 0.5.2
Summary: A library for creating and editing Minecraft items using python
License-Expression: MIT
License-File: LICENSE
Keywords: minecraft,item,block,nbt
Author: Amp
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: dev
Requires-Dist: pytest (>=9.0.2) ; extra == "dev"
Requires-Dist: rapidnbt (>=1.3.3)
Requires-Dist: twine (>=6.2.0) ; extra == "dev"
Project-URL: Repository, https://github.com/Amp63/mcitemlib
Description-Content-Type: text/markdown

# mcitemlib

A library for creating and editing Minecraft items using python.

## Method List

### Class Methods
 - `from_tag`
 - `from_snbt`

### General
 - `get_id`
 - `get_count`
 - `get_durability`
 - `get_name`
 - `set_id`
 - `set_count`
 - `set_durability`
 - `set_name`

### Lore
 - `get_lore`
 - `set_lore`

### Enchantments
 - `get_enchantments`
 - `set_enchantments`

### Shulker Boxes
 - `get_shulker_box_contents`
 - `set_shulker_box_contents`

### Books
 - `get_book_text`
 - `get_book_author`
 - `get_book_title`
 - `set_book_text`
 - `set_book_author`
 - `set_book_title`

### Other
 - `get_component`
 - `set_component`
 - `get_snbt`

