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.
Example:
# imports
import time
import PythonToSW as PTS
# create addon
addon = PTS.Addon(addonName = "My Python Addon", port = 7800) # automatically creates an sw addon and places it in your game's addon directory
def main():
# every 5 seconds, send a message to everyone
while True:
time.sleep(5)
addon.execute(
PTS.Announce("Server", "Hello World")
)
addon.start(main)
⚙️ | Installing this package
- Use
pip install PythonToSW - 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.
- Lack of vehicle support. I likely won't add vehicle support, sorry! :-(
- 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.
✨ | 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.0.7.tar.gz
(41.6 kB
view details)
File details
Details for the file PythonToSW-1.0.7.tar.gz.
File metadata
- Download URL: PythonToSW-1.0.7.tar.gz
- Upload date:
- Size: 41.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 |
2e022bd30d6f4bc23d0fabdf8eb2ffb6f9492c5f1a760fd2259b5c42177292f9
|
|
| MD5 |
d4eca6aaa0fd0ca272739fe4ee4454d5
|
|
| BLAKE2b-256 |
b9cc92979c3314eb3f32402a43ba16a0cb1c0c55fa2c7d17f12e12afc24d45cd
|