54 lines
1.2 KiB
Python
54 lines
1.2 KiB
Python
# This file contains the config of the whole project.
|
|
# DO NOT share your crtical info to others.
|
|
# Change the file name from .settings.py to settings.py.
|
|
from sdgb import aimedb_api, felica, mifare
|
|
|
|
|
|
########## Felica Card ##########
|
|
#################################
|
|
## 这一部分仅作为参考,相关 API 已被 AiMeDB 禁用。
|
|
|
|
# accessCode = "50000000000000000000"
|
|
# IDm = "0000000000000000"
|
|
# felica(IDm)
|
|
# userId = aimedb_api(accessCode)
|
|
#################################
|
|
##################################
|
|
|
|
|
|
########## Mifare Card ##########
|
|
#################################
|
|
|
|
accessCode = "01036000000000000000"
|
|
serialNumber = "00000000"
|
|
|
|
|
|
userId = mifare(accessCode, serialNumber)
|
|
#################################
|
|
##################################
|
|
|
|
|
|
|
|
# 上传的乐曲成绩
|
|
# 此成绩将覆盖原有成绩
|
|
|
|
music_data = ({
|
|
"musicId": 11588,
|
|
"level": 3,
|
|
"playCount": 11,
|
|
"achievement": 1005627,
|
|
"comboStatus": 0,
|
|
"syncStatus": 0,
|
|
"deluxscoreMax": 2362,
|
|
"scoreRank": 13,
|
|
"extNum1": 0
|
|
})
|
|
|
|
# 机厅信息
|
|
|
|
regionId = 114
|
|
regionName = "Yau Tsim Mong"
|
|
placeId = 6412
|
|
placeName = "GOLDEN ERA GAME CENTRE"
|
|
clientId = "A63E01E0048"
|