ASF_IPC
ASF_IPC copied to clipboard
A simple Python 3.6+ wrapper of ArchiSteamFarm IPC API
ASF_IPC
A simple asynchronous Python 3.6+ wrapper of ArchiSteamFarm IPC API
Powered by aiohttp, ASF_IPC is now fully asynchronous. Synchronous methods are no longer supported. ASF_IPC resolves APIs automatically from the new swagger API of ASF, so ASF_IPC always has the latest APIs data as long as ASF is updated.
Examples
Requirements
- Python 3.6+
- aiohttp
Installation
pip3 install -U ASF_IPC
Getting Started
This example shows how to send a command to ASF:
import asyncio
from ASF import IPC
async def command(asf, cmd):
return await asf.Api.Command.post(body={
'Command': cmd
})
async def main():
# The IPC initialization duration depends on the network
async with IPC(ipc='http://127.0.0.1:1242', password='YOUR IPC PASSWORD') as asf:
while True:
cmd = input('Enter a command: ')
resp = await command(asf, cmd)
if resp.success:
print(resp.result)
else:
print(f'Error: {resp.message}')
loop = asyncio.get_event_loop()
output = loop.run_until_complete(main())
loop.close()
Find the endpoint
To get a list of all endpoints of ASF, open your web browser and visit the swagger page of your ASF instance (usually http://127.0.0.1:1242/swagger).
You can see many endpoints with their paths, such as /Api/Bot/{botNames}, this endpoint in ASF_IPC is asf.Api.Bot['botNames']. Change separator to . and {} to [], you will get an endpoint object, which has request methods e.g. get(), post() etc.
Note the botNames here is not the value of the argument, to pass value, use kwargs in request methods.
Some more examples:
asf.Api.ASF # /Api/ASF
asf.Api.Bot['botNames'].Pause # /Api/Bot/{botNames}/Pause
asf.Api.WWW.GitHub.Release # /Api/WWW/GitHub/Release
asf.Api.WWW.GitHub.Release['version'] # /Api/WWW/GitHub/Release/{version}
Send a request
After your endpoint found, you want to send some data to this endpoint, you can use get(), post(), put(), delete() methods, these methods have optional arguments:
body(dict): the JSON request body.params(dict): the parameters in URL after a?.
If you need to pass values to the parameters in the path, for example {botName} in /Api/Bot/{botName}/Redeem, you can pass them as kwargs of the method.
Some examples:
# POST /Api/Bot/mainaccount/Pause
await asf.Api.Bot['botNames'].post(botNames='mainaccount')
# GET /Api/WWW/GitHub/Release
await asf.Api.WWW.GitHub.Release.get()
# POST /Api/Bot/robot with json body {'BotConfig': ...}
await asf.Api.Bot['botName'].post(body={'BotConfig': ...}, botName='robot')
Get a response
After sending a request to the endpoint, we got a response object, which has 3 attributes:
Resultorresult(str): some data returned by ASF.Messageormessage(str): describes what happened with the request.Successorsuccess(bool): if the request has succeeded.
If ASF_IPC cannot give a value to some attributes, these attributes will be None or empty value.
WebSocket endpoint
Example for /Api/NLog:
import asyncio
from ASF import IPC
async def get_log(asf):
async for resp in asf.Api.NLog.ws(): # use ws() instead of get(), post()...
if resp.success:
print(resp.result)
async def main():
async with IPC(ipc='http://127.0.0.1:1242', password='YOUR IPC PASSWORD') as asf:
while True:
await get_log(asf)
loop = asyncio.get_event_loop()
output = loop.run_until_complete(main())
loop.close()