13 lines
256 B
Python
Executable file
13 lines
256 B
Python
Executable file
#!/usr/bin/env python3
|
|
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']
|
|
|
|
print(mocha_server.get_users(username_list))
|
|
|