This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
47-ArchivesSpace-API-Workshop.html
55 lines (46 loc) · 1.91 KB
/
47-ArchivesSpace-API-Workshop.html
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
<!DOCTYPE html>
<html>
<head>
<link href="css/slides.css" rel="stylesheet" />
</head>
<body>
<nav>
<a id="start-slide" rel="nav" href="00-ArchivesSpace-API-Workshop.html" title="Return to start of presentation">Start</a>
<a id="prev-slide" rel="nav" href="46-ArchivesSpace-API-Workshop.html" title="Previous slide">Prev</a>
<a id="next-slide" rel="nav" href="48-ArchivesSpace-API-Workshop.html" title="Next slide">Next</a>
</nav>
<section><h1>4. Repositories</h1>
<h2>adding list_repo</h2>
<p>Let’s copy and modify our list_repos definition to <em>list_repo</em>. Paste
it after the function <em>list_repos</em>. We’ll be updating the <em>if</em> block too.</p>
<p>In the definition section add</p>
<pre><code class="language-python"> def list_repo(api_url, auth_token, repo_id):
'''List all the repositories, return the listing object'''
req = urllib.request.Request(
url = api_url+'/repositories/'+str(repo_id),
data = None,
headers = {'X-ArchivesSpace-Session': auth_token})
try:
response = urllib.request.urlopen(req)
except urllib.error.HTTPError as e:
print(e.code)
print(e.read())
return None
except urllib.error.URLError as e:
print(e.reason)
return None
src = response.read().decode('utf-8')
return json.JSONDecoder().decode(src)
</code></pre>
<p>In the test <em>if</em> block add</p>
<pre><code class="language-python"> # Test for list_repo
repo_id = int(input('Enter repo id (e.g. 2): '))
repo = list_repo(api_url, auth_token, repo_id)
print('repository', json.dumps(repo, indent=4))
</code></pre>
<p>Are the results what you expected? Are we still getting an array?</p>
<p>Full listing <a href="repo.py">repo.py</a></p>
</section>
<script type="text/javascript" src="js/keyboard-nav.js"></script>
</body>
</html>