py-mcpe-stats is a Python software that allows you to ping a Minecraft Pocket:Edition server for basic information.
You are required to have Python 3 installed on your computer
Run pip install py_mcpe_stats
in your terminal and it will download the latest version of this project.
Simply execute python main.py pe.mineplex.com 19132
in the root folder of this project.
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()
MIT © 2016 w-gao