scripts/vas/unlock_zone_tp.py

17 lines
542 B
Python

from lib.all import *
tp_mid = 14573
streamer_mids = [93, 140, 142, 135, 123, 139, 99, 98, 102, 141, 151, 101, 111, 95, 120, 119, 110, 113, 4, 115, 89, 106, 96, 109, 121, 94, 92, 148, 122, 107, 118, 134, 54525, 97, 132, 100, 144, 104, 87404, 38971]
def call(tpmid, streamer_mid):
param = {
"third_part_mids": [tpmid], "streamer_mid": streamer_mid
}
res = call_service("https://api.tiefen.fun/op/zone/unlock_third_partners", param)
print(tpmid, streamer_mid, res)
for smid in streamer_mids:
call(tp_mid, smid)