14 lines
303 B
Python
14 lines
303 B
Python
import mocha_server
|
|
|
|
#mocha_server.insert_row(4, 'andrew')
|
|
|
|
#print(mocha_server.fetch_user(3))
|
|
|
|
#print(mocha_server.get_top_N('user_id', False, 3))
|
|
|
|
username_list = ['andrew', 'Corder']
|
|
|
|
|
|
mocha_server.update_steps(4, 1234)
|
|
mocha_server.update_steps(2, 5678)
|
|
print(mocha_server.get_users(username_list))
|