Skip to content

Commit 1097a7f

Browse files
committed
updates
1 parent a293d9f commit 1097a7f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ The 'filePath' is directory into which output files will be written and 'handleP
1515

1616
If you are using both a development server and a production server, you can create a separate secrets.py file with a different name (e.g. secretsProd.py) and containing the production server information. When running each of these scripts, you will be prompted to enter the file name (e.g 'secretsProd' without '.py') of an alternate secrets file. If you skip the prompt or incorrectly type the file name, the scripts will default to the information in the secrets.py file. This ensures that you will only access the production server if you really intend to.
1717

18-
**Note**: All of these scripts skip collection '4dccec82-4cfb-4583-a728-2cb823b15ef0' for local reasons. To change this, edit the following portion of the script (typically between line 27-39)
18+
**Note**: All of these scripts skip collection '45794375-6640-4efe-848e-082e60bae375' for local reasons. To change this, edit the following portion of the script (typically between line 27-39)
1919

2020

21-
Skips collection 4dccec82-4cfb-4583-a728-2cb823b15ef0:
21+
Skips collection 45794375-6640-4efe-848e-082e60bae375:
2222

2323
for j in range (0, len (collections)):
2424
collectionID = collections[j]['uuid']
25-
if collectionID != '4dccec82-4cfb-4583-a728-2cb823b15ef0':
25+
if collectionID != '45794375-6640-4efe-848e-082e60bae375':
2626
offset = 0
2727

2828

metadataCollectionsKeysMatrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
for j in range (0, len (collections)):
5151
collectionID = collections[j]['uuid']
5252
print collectionID
53-
if collectionID != '4dccec82-4cfb-4583-a728-2cb823b15ef0':
53+
if collectionID != '45794375-6640-4efe-848e-082e60bae375':
5454
offset = 0
5555
items = ''
5656
while items != []:
@@ -91,7 +91,7 @@
9191
collections = requests.get(baseURL+'/rest/communities/'+str(communityID)+'/collections', headers=header, cookies=cookies, verify=verify).json()
9292
for j in range (0, len (collections)):
9393
collectionID = collections[j]['uuid']
94-
if collectionID == '4dccec82-4cfb-4583-a728-2cb823b15ef0':
94+
if collectionID == '45794375-6640-4efe-848e-082e60bae375':
9595
print 'Levy Collection - skipped'
9696
else:
9797
collectionItemList = []

metadataOverview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
collectionHandle = collections[j]['handle']
5656
fullName = communityName+' - '+collectionName
5757
print collectionID
58-
if collectionID != '4dccec82-4cfb-4583-a728-2cb823b15ef0':
58+
if collectionID != '45794375-6640-4efe-848e-082e60bae375':
5959
offset = 0
6060
items = ''
6161
while items != []:

0 commit comments

Comments
 (0)