Skip to content

Instantly share code, notes, and snippets.

View optimumtact's full-sized avatar
💾
Look a 3d printed save icon

oranges optimumtact

💾
Look a 3d printed save icon
  • Nanotrasen
  • Stellar Spinward Space
View GitHub Profile
import socket
import struct
import urllib.parse
def byond_export(host, port, string):
packet_id = b'\x83'
try:
sock = socket.create_connection((host, port))
except socket.error: