Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
nosivads committed Feb 8, 2025
1 parent d98b406 commit 511e1bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/oai.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,11 @@ def buildrecordxml(listrecords, c, collectiontitle, inheriteddata):
with open(fileout, 'w') as f:
f.write(prettify(oaixml))

for item in dao_dict:
for collection in dao_dict:
print(collection)
for url in dao_dict[collection]:
print('>', url, dao_dict[collection][url])



print(dao_count, 'total records created')
Expand Down

0 comments on commit 511e1bb

Please sign in to comment.