sennoza/map.py
77e8377a-ca5c-42d5-8b2b-506123abec0e 7a54773e89 Init
2025-01-24 10:07:52 +08:00

17 lines
316 B
Python

import json
from sdgb import sdgb_api
def map(userId):
data = json.dumps({
"userId": int(userId),
"nextIndex": 0,
"maxCount": 600
})
map_result = json.loads(sdgb_api(data, "GetUserMapApi", userId))
return map_result
if __name__ == "__main__":
print(map(int(input())))