Artifacts MMO — Python SDK¶
Welcome! This SDK lets you control your characters in Artifacts MMO straight from a Python script. You don’t need to be an expert — a few lines of code are enough to fight, gather, craft, and trade.
from artifacts import ArtifactsClient
with ArtifactsClient(token="your_token") as client:
char = client.character("MyChar")
char.move(x=0, y=1) # move
result = char.fight() # fight!
print(result.fight.result) # "win"
Don’t want to use async/await? The code above is 100 % synchronous. The SDK handles cooldowns automatically — you don’t have to do anything.
Note
Requires Python 3.10+. Install: pip install artifacts-mmo
Contents¶
Player Guide
Game World
Advanced Features
Full Examples
API Reference