Skip to content

Commit e630f3e

Browse files
authored
Update README.md
1 parent 6433c5c commit e630f3e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,19 @@ filePath = '/Users/dspace_user/dspace-data-collection/data/'
1212
handlePrefix = 'http://dspace.myuni.edu/handle/'
1313
```
1414
this file will be gitignored.
15+
16+
*Note that all of these scripts skip collection '24' for local reasons. To change this, edit the following portion of the script (typically between line 27-39)
17+
18+
Skips collection 24
19+
20+
for j in range (0, len (collections)):
21+
collectionID = collections[j]['id']
22+
if collectionID != 24:
23+
offset = 0
24+
25+
No directories skipped:
26+
27+
for j in range (0, len (collections)):
28+
collectionID = collections[j]['id']
29+
if collectionID != 0:
30+
offset = 0

0 commit comments

Comments
 (0)