Skip to content

Commit 8cb930e

Browse files
authored
Update README.md
1 parent ef00a98 commit 8cb930e

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,23 @@ All of these scripts require a secrets.py file in the same directory that must c
1010
```
1111
The 'filePath' is directory into which output files will be written and 'handlePrefix' may or may not vary from your DSpace URL depending on your configuration. This secrets.py file will be ignored according to the repository's .gitignore file so that DSpace login details will not be inadvertently exposed through Github
1212

13-
*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)*
13+
**Note**: 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)
1414

15-
Skips collection 24
15+
Skips collection 24
1616

17-
for j in range (0, len (collections)):
18-
collectionID = collections[j]['id']
19-
if collectionID != 24:
20-
offset = 0
17+
for j in range (0, len (collections)):
18+
collectionID = collections[j]['id']
19+
if collectionID != 24:
20+
offset = 0
2121
22-
No collections skipped:
22+
23+
No collections skipped:
2324

24-
for j in range (0, len (collections)):
25-
collectionID = collections[j]['id']
26-
if collectionID != 0:
27-
offset = 0
25+
for j in range (0, len (collections)):
26+
collectionID = collections[j]['id']
27+
if collectionID != 0:
28+
offset = 0
29+
2830
2931
#### [compareTwoKeysInCommunity.py](compareTwoKeysInCommunity.py)
3032
Based on user input, this script extracts the values of two specified keys from a specified community to a CSV file for comparison.

0 commit comments

Comments
 (0)