Victoria


Use API by using only 3 lines native python

See these three lines of cody to retrieve all rants of a user.
from xmlrpc.client import ServerProxy
client = ServerProxy("https://127.0.0.1:3050/rpc")
print(client.get_rants(username="kiki"))

Get comments of user

print(client.get_rants(username="feuerherz"))

Get accounts of spammers

print(client.get_spammers())