Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davisdmitry/pycubes
Library for creating servers and clients for Minecraft Java Edition
https://github.com/davisdmitry/pycubes
minecraft minecraft-client minecraft-server python python3
Last synced: 2 months ago
JSON representation
Library for creating servers and clients for Minecraft Java Edition
- Host: GitHub
- URL: https://github.com/davisdmitry/pycubes
- Owner: DavisDmitry
- License: mit
- Created: 2021-09-25T15:05:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T16:03:55.000Z (9 months ago)
- Last Synced: 2024-10-10T09:22:28.010Z (4 months ago)
- Topics: minecraft, minecraft-client, minecraft-server, python, python3
- Language: Python
- Homepage: https://pycubes.dmitrydavis.xyz
- Size: 1.79 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pyCubes
---
Documentation |
Examples |
Protocol Specification---
pyCubes is a library for creating servers and clients for Minecraft Java Edition.
**❗ 0.x versions are not stable. The library API is subject to change.**
## Installation
```bash
pip install pyCubes
```## Features
- Serializers for some [Data types](https://wiki.vg/Data_types)
- Connection
- Low level server
- NBT module (wrapper over the [nbtlib](https://github.com/vberlier/nbtlib))
- `generate_uuid` utility (generates UUID by player_name for using in offline mode)
- [AnyIO](https://github.com/agronholm/anyio) support (an asynchronous networking and concurrency library)## TODO
- [x] Serializers for Data types
- [ ] Network packets
- [ ] Implement compression
- [ ] High level server application with event driven API
- [ ] High level client application with event driven API
- [ ] High level proxy application with event driven API
- [ ] Chat API (chat messages constructor)
- [ ] Commands API
- [ ] Add API Reference to docs