A minecraft server wrapper written in python
Project description
Spinel
A minecraft server wrapper written in python.
This program in its current state only allows you to read the chat and send commands (as the server).
Tutorial
First, install spinel by running pip install spinel
in the terminal.
Import Spinel by using import spinel
at the top of your file.
You'll need a server premade (which can be done with Pyrite). Rename your server .jar
file to spinel_server.jar
Now, make an instance of your server with: server = spinel.server(path)
.
Start the server with server.start()
.
To read messages and send commands, make a while loop like so:
while True:
msg = server.latest_message()
if msg:
print(msg.raw) # this prints the whole message
print(msg.author) # this prints the name of the one who sent the message
print(msg.content) # this prints the message content
server.write("say Hello, World") # Writes "Hello, World" to the chat repeatedly
Example
import spinel
server = spinel.server()
server.start()
while True:
msg = server.latest_message()
if msg:
print(msg.raw)
if msg.content.split(" ")[0] == "!math":
result = eval(msg.content.split(" ")[1])
output = 'tellraw @a {"text":"' + msg.content.split(" ")[1] + '=' + str(result) + '"}'
server.write(output)
This code prints all messages to the python terminal and allows the user to perform basic math using the !math
command.
Note
You'll need to manually close your server terminal before relaunching
Dependencies
- os
- subprocess
- sys
- threading
- queue
Credits
- Ravbug
- nigel
- Winter_Snake
- vdvman1
- AjaxGB
- A2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file spinel-1.1.3.tar.gz
.
File metadata
- Download URL: spinel-1.1.3.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 533c8c0fb8155a230828d12709ab8f6336d96fcaaaeab6987fe0180d21b44864 |
|
MD5 | 64e32c4450fdbbbf165ed50bf578548c |
|
BLAKE2b-256 | dbeab3759ba4489a26890bebbd6e196a4d070db4f8ce5b072a3a0cec43319f15 |
Provenance
File details
Details for the file spinel-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: spinel-1.1.3-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 934d91296deb90ac0d116c1c918b5ee4e5f72a9d884414972c0b530e588388fa |
|
MD5 | 6cb3edf67c27721018961992da65953e |
|
BLAKE2b-256 | a34bfee9f6ecfc955c7609319ffe6b2eb28893e8117347d3b1999cf04615d908 |