Metadata-Version: 2.5
Name: pybedrock-net
Version: 0.1.0
Summary: A small, practical Python client for Minecraft Bedrock server discovery and UDP transport.
Project-URL: Homepage, https://pypi.org/project/pybedrock-net/
Project-URL: Repository, https://github.com/pybedrock-net/pybedrock-net
Author: PyBedrock Net contributors
License: MIT License
        
        Copyright (c) 2026 PyBedrock Net contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: bedrock,game-bot,minecraft,raknet,udp
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.10
Requires-Dist: build>=1.5.0
Requires-Dist: pytest>=9.1.1
Requires-Dist: twine>=7.0.0
Description-Content-Type: text/markdown

# PyBedrock Net

Small, dependency-free Python tools for Minecraft Bedrock server discovery and
RakNet UDP transport. It is designed to be easy to start with and easy to
extend into a bot or protocol client.

## Install

```bash
pip install pybedrock-net
```

## Command line

```bash
bedrock-ping play.example.com
bedrock-ping play.example.com --port 19132 --timeout 5
```

## Python

```python
from pybedrock_net import BedrockClient

client = BedrockClient("play.example.com", 19132)
status = client.ping()
print(status.description, status.players_online, "/", status.players_max)
```

This release implements the RakNet unconnected ping/pong flow and a reusable
UDP transport. Full authenticated login, encrypted Xbox sessions, reliable
framed packets, and world/chunk decoding are intentionally not claimed as
complete yet; these will be added behind tested APIs in later releases.

## Development

```bash
python -m pytest
python -m build
```

MIT licensed.