py-mcpe-stats

a Python software that gets basic information about an MCPE server


Keywords
MCPE, minecraft, mcpeserver, raknet, python, mcpe-protocol
License
MIT
Install
pip install py-mcpe-stats==0.1.3

Documentation

py-mcpe-stats

PyPI

py-mcpe-stats

Introduction


py-mcpe-stats is a Python software that allows you to ping a Minecraft Pocket:Edition server for basic information.

Install


You are required to have Python 3 installed on your computer

Install via pip

Run pip install py_mcpe_stats in your terminal and it will download the latest version of this project.

Usage


Run Directly

Simply execute python main.py in the root folder of this project.

It will automatically query the host and port that are set in the main.py file.

Use as a module

Include the following code in your project:

from py_mcpe_stats import Query

host = 'localhost'
port = 19132

q = Query(host, port)
server_data = q.query()

License


MIT © 2016 w-gao