Skip to content

Commit

Permalink
creating fake ids csv file for software like the one for document
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazztok45 committed Feb 9, 2024
1 parent bbe2798 commit 7afb3a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/zbmath_rest2oai/fake_dict_sw.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
def fake_dict_sw():
return list(range(1, 10))
with open('software.csv','w') as f:
return f.write(','.join(map(str,list(range(1, 10)))))

if __name__ == '__main__':
fake_dict_sw()
1 change: 1 addition & 0 deletions src/zbmath_rest2oai/software.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1,2,3,4,5,6,7,8,9

0 comments on commit 7afb3a0

Please sign in to comment.