forked from tubes-daspro-k10-2/bnmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
17 lines (14 loc) · 776 Bytes
/
Copy pathconstants.py
File metadata and controls
17 lines (14 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# nilai nilai default
defaultAllowedCharacter = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1',
'2', '3', '4', '5', '6', '7', '8', '9', '_', '-']
defaultScreenWidth = 100
# sesi akun kosong
emptySessionAccount = ['','','', '', ''] #username, name, saldo, role, id
# header file
usercsvHeader = ['id', 'username', 'name', 'password', 'role', 'saldo']
gamecsvHeader = ['id', 'nama', 'kategori', 'tahun_rilis', 'harga', 'stok']
kepemilikancsvHeader = ['game_id', 'user_id']
riwayatcsvHeader = ['game_id', 'nama', 'harga', 'user_id', 'tahun_beli']