A package that allows you to create addons in Stormworks with Python, handled through HTTP.
Project description
⚙️ | PythonToSW
📚 | Overview
A Python package that allows you to create basic addons in Stormworks: Build and Rescue with Python.
import time
import PythonToSW as PTS
addon = PTS.Addon(addonName = "My Python Addon", port = 7800)
def main():
# Every 5 seconds, send a message to everyone
while True:
time.sleep(5)
addon.execute(
PTS.Announce("Server", "Hello World", -1)
)
addon.start(target = main) # Start the addon. This automatically creates an addon and places it in your Stormworks' addon directory, so you can easily use the addon in a save
⚙️ | Installing this package
- Use
pip install PythonToSW --upgrade - Import the package with
import PythonToSW as PTSin your code
😔 | Quirks
- Noticeable delays. This project works through HTTP instead of converting Python code to Lua code, and HTTP is unfortunately slow.
- For your addon to function, the host of the server must run the Python script behind your addon. Closing the Python script will essentially stop the addon.
- No support for
property.sliderandproperty.checkboxas of now.
✨ | Credit
- Cuh4 (GitHub)
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
PythonToSW-1.2.6.tar.gz
(50.6 kB
view details)
File details
Details for the file PythonToSW-1.2.6.tar.gz.
File metadata
- Download URL: PythonToSW-1.2.6.tar.gz
- Upload date:
- Size: 50.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8716503340e0bfb8545b9bf11bd0b5b23daa4f2287d8a0ff41bdd3a04c0c05a
|
|
| MD5 |
4d98d483a85d13d9a0033c255a2aa788
|
|
| BLAKE2b-256 |
118f1f5b387b1d28e3d97152eb9838da6c1530d8e243dfb479e4c00f4b79feb4
|