Init Commit

This commit is contained in:
91c0e59d-6161-45ab-8aa4-2371574db28f
2025-01-10 15:12:33 +08:00
commit e3893415ae
19 changed files with 921934 additions and 0 deletions

16
sdgb/preview.py Normal file
View File

@ -0,0 +1,16 @@
import json
from sdgb import sdgb_api
from settings import userId
def preview(userId):
data = json.dumps({
"userId": int(userId)
})
preview_result = sdgb_api(data, "GetUserPreviewApi", userId)
return preview_result
if __name__ == "__main__":
print(preview(userId))