Metadata-Version: 2.1
Name: mcitemlib
Version: 0.3.2
Summary: A library for creating and editing Minecraft items using python.
Home-page: https://github.com/Amp63/mcitemlib
License: MIT
Keywords: minecraft,item,block,nbt
Author: Amp
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: nbtlib (>=2.0.4,<3.0.0)
Requires-Dist: numpy (>=2.2.0,<3.0.0)
Requires-Dist: websocket-client (>=1.8.0,<2.0.0)
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

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

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

### Enchantments
 - `get_enchantments`
 - `set_enchantment`

### Shulker Boxes
 - `get_shulker_box_item`
 - `set_shulker_box_item`

### Books
 - `get_book_text`
 - `set_book_text`
 - `set_book_page`
 - `set_book_author`
 - `set_book_title`

### Other
 - `get_tag`
 - `set_tag`
 - `get_nbt`
 - `send_to_minecraft`
