A simple Python 3.6+ library of ArchiSteamFarm IPC API
- Python 3.6+
- requests
- websockets
pip3 install ASF_IPC
This example shows how to post a command to ASF:
import ASF_IPC as asf
api = asf.IPC(ipc='http://127.0.0.1:1242/', password='YOUR IPC PASSWORD')
command = input('Enter a command:')
output = api.command(command)
print(output)
For further usage examples, read our wiki pages.