forked from rsdoiel/archivesspace-api-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01-ArchivesSpace-API-Workshop.html
More file actions
68 lines (55 loc) · 2.29 KB
/
01-ArchivesSpace-API-Workshop.html
File metadata and controls
68 lines (55 loc) · 2.29 KB
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
66
67
<!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="00-ArchivesSpace-API-Workshop.html" title="Previous slide">Prev</a>
<a id="next-slide" rel="nav" href="02-ArchivesSpace-API-Workshop.html" title="Next slide">Next</a>
</nav>
<section><h1>Introducing the ArchivesSpace REST API using Python 3</h1>
<p>Before we begin …</p>
<h2>Required</h2>
<ul>
<li>A laptop/device with network access
<ul>
<li>e.g. Linux (what I use), Mac OS X (which I am familiar with), or Windows (which I am very very rusty on)</li>
</ul></li>
<li>Python 3.5 installed including the python standard library (see <a href="https://docs.python.org/3/library/">https://docs.python.org/3/library/</a>)
<ul>
<li>Python 3 (v3.5.2) can be downloaded and from <a href="https://www.python.org/downloads/">https://www.python.org/downloads/</a></li>
</ul></li>
<li>A text editor
<ul>
<li><em>IDLE for Python 3</em> is fine for the workshop</li>
</ul></li>
<li>A web browser
<ul>
<li>Firefox or Chrome with the <a href="https://jsonview.com/">JSONView</a> plugin recommended</li>
</ul></li>
<li>A test deployment ArchivesSpace is being provided as part of the Workshop
<ul>
<li>try <a href="http://archivesspace.github.io/archivesspace/user/getting-started/">Getting Started</a> if you want to install locally</li>
<li>Or you can install your own via <a href="./archivesspace-dev/">VirtualBox and Vagrant</a> if you’re adventurous</li>
</ul></li>
<li>A basic familiarity with Python and ArchivesSpace</li>
</ul>
<h2>Suggested</h2>
<ul>
<li>Bookmark in your web browser:
<ul>
<li><a href="http://archivesspace.github.io/archivesspace/api/">ArchivesSpace API Docs</a></li>
<li><a href="https://docs.python.org/3/library/index.html">Python Reference</a></li>
<li><a href="https://rsdoiel.github.io/archivesspace-api-workshop">This presentation website</a></li>
</ul></li>
<li>Recommended reading
<ul>
<li>Read through the <a href="https://docs.python.org/3/tutorial/index.html">Python 3 tutorial</a> if you are not familiar with Python.</li>
</ul></li>
</ul>
</section>
<script type="text/javascript" src="js/keyboard-nav.js"></script>
</body>
</html>