forked from ehanson8/dspace-data-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkValidalityOfHandles.py
65 lines (55 loc) · 1.93 KB
/
checkValidalityOfHandles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import json
import requests
import secret
from datetime import datetime
import time
import argparse
import pandas as pd
secretVersion = input('To edit production, enter the secret file: ')
if secretVersion != '':
try:
secret = __import__(secretVersion)
print('Using Production')
except ImportError:
print('Using Stage')
else:
print('Using Stage')
parser = argparse.ArgumentParser()
parser.add_argument('-f', '--fileName')
args = parser.parse_args()
if args.fileName:
fileName = args.fileName
else:
fileName = input('Enter file of handles (including \'.csv\'): ')
baseURL = secret.baseURL
email = secret.email
password = secret.password
filePath = secret.filePath
startTime = time.time()
data = json.dumps({'email': email, 'password': password})
header = {'content-type': 'application/json', 'accept': 'application/json'}
session = requests.post(baseURL+'/rest/login', headers=header, data=data).content
headerAuth = {'content-type': 'application/json', 'accept': 'application/json', 'rest-dspace-token': session}
print('authenticated')
df_1 = pd.read_csv(fileName)
handleList = df_1.handle.to_list()
handleCount = len(handleList)
all_items = []
for count, handle in enumerate(handleList):
print(handleCount-count)
try:
itemInfo = requests.get(baseURL+'/rest/handle/'+handle, headers=headerAuth, timeout=1)
except requests.exceptions.ConnectTimeout or requests.exceptions.ReadTimeout:
itemInfo = 'timeout'
print(itemInfo)
tinyDict = {'handle': handle, 'response':itemInfo}
all_items.append(tinyDict)
df = pd.DataFrame.from_dict(all_items)
print(df.head(15))
dt = datetime.now().strftime('%Y-%m-%d %H.%M.%S')
df.to_csv('recordMetadataFromHandles'+dt+'.csv', index=False)
logout = requests.post(baseURL+'/rest/logout', headers=headerAuth)
elapsedTime = time.time() - startTime
m, s = divmod(elapsedTime, 60)
h, m = divmod(m, 60)
print('Total script run time: ', '%d:%02d:%02d' % (h, m, s))