-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgetArrayPropertiesFromAgentsPeopleCSV.py
55 lines (46 loc) · 1.74 KB
/
getArrayPropertiesFromAgentsPeopleCSV.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
import requests
import csv
import time
secretsVersion = input('To edit production server, enter the name of the \
secrets file: ')
if secretsVersion != '':
try:
secrets = __import__(secretsVersion)
print('Editing Production')
except ImportError:
secrets = __import__('secrets')
print('Editing Development')
else:
print('Editing Development')
startTime = time.time()
baseURL = secrets.baseURL
user = secrets.user
password = secrets.password
repository = secrets.repository
auth = requests.post(baseURL + '/users/' + user + '/login?password='
+ password).json()
session = auth['session']
headers = {'X-ArchivesSpace-Session': session,
'Content_Type': 'application/json'}
print('authenticated')
endpoint = '/agents/people?all_ids=true'
ids = requests.get(baseURL + endpoint, headers=headers).json()
records = []
for id in ids:
endpoint = '/agents/people/' + str(id)
output = requests.get(baseURL + endpoint, headers=headers).json()
records.append(output)
f = csv.writer(open('asArrayResults.csv', 'w'))
f.writerow(['uri'] + ['begin'] + ['end'] + ['expression'])
for i in range(0, len(records)):
for j in range(0, len(records[i]['dates_of_existence'])):
uri = records[i]['uri']
beginDate = records[i]['dates_of_existence'][j].get('begin', 'none')
endDate = records[i]['dates_of_existence'][j].get('end', 'none')
expressionDate = records[i]['dates_of_existence'][j]
expressionDate = expressionDate.get('expression', 'none')
f.writerow([uri] + [beginDate] + [endDate] + [expressionDate])
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))