26 lines
508 B
Python
26 lines
508 B
Python
import random
|
|
|
|
with open('music.json') as file:
|
|
music = json.load(file)
|
|
|
|
|
|
music_data = ({
|
|
"musicId": 11451,
|
|
"level": 3,
|
|
"playCount": random.randint(10, 20),
|
|
"achievement": random.randint(995000, 1000000),
|
|
"comboStatus": random.randint(0, 2),
|
|
"syncStatus": 0,
|
|
"deluxscoreMax": random.randint(1300, 1500),
|
|
"scoreRank": 11,
|
|
"extNum1": 0
|
|
})
|
|
|
|
# 机厅信息
|
|
|
|
regionId = 534
|
|
regionName = "Aomen"
|
|
placeId = 7850
|
|
placeName = "GAME WORLD(CHIAO KUONG)"
|
|
clientId = "A63E01E0182"
|