A simple Python 3.6+ library of ArchiSteamFarm IPC API


License
GPL-3.0
Install
pip install ASF-IPC==2.1.0

Documentation

ASF_IPC

license PyPI PyPI ASF

A simple Python 3.6+ wrapper of ArchiSteamFarm IPC API

Examples

Requirements

  • Python 3.6+
  • requests
  • websockets

Installation

pip3 install ASF_IPC

Getting Started

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.