-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJanrainMain.py
19 lines (14 loc) · 1.07 KB
/
JanrainMain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from JanrainInternal.GetRecordsFromJanrain import GetRecordsFromJanrain
from JanrainInternal.GetRecordsCountFromJanrain import GetRecordsCountFromJanrain
from JanrainInternal.UpdateRecordsInJanrain import UpdateRecordsInJanrain
from JanrainInternal.DeleteRecordsFromJanrain import DeleteRecordsFromJanrain
if __name__ == "__main__":
####################################### Global Settings #######################################################
RecordsFilePath = 'records.csv'
CredentialsFilePath = 'credentials.csv'
####################################### Get Records Methods ####################################################
# GetRecordsObj = GetRecordsFromJanrain(CredentialsFilePath)
####################################### Update Records Methods ##################################################
# UpdateRecordsObj = UpdateRecordsInJanrain(CredentialsFilePath)
####################################### Delete Records Methods ##################################################
# DeleteRecordObj = DeleteRecordsFromJanrain(CredentialsFilePath)