-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_filebase_cids.py
44 lines (34 loc) · 1002 Bytes
/
get_filebase_cids.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
getFilebaseCIDs.py
------------------
Iterate over a list of bucket to get the full list of CIDs in each bucket
"""
from typing import List
from filebase_pin_api import FilebasePinAPI
BUCKETS: List[str] = [
'kleros',
'kleros-v2',
'kleros-websites',
'poh-v2',
'curate-v2',
'escrow-v2',
'reality-v2',
'kleros-token-list',
'v2-logs',
'atlas-logs'
]
def main() -> None:
"""
Main function that iterates over predefined buckets, retrieves all CIDs for each bucket,
and prints the number of CIDs found in each bucket.
BUCKETS: A predefined list of buckets to process.
getAllCIDs(bucket): A function that takes a bucket as an argument and returns a list of CIDs.
Returns:
None
"""
filebase_api = FilebasePinAPI(log_filepath="logs/get_filebase_cids.log")
for bucket in BUCKETS:
cids = filebase_api.get_all_cids(bucket)
print(f"{bucket} has {len(cids)} CIDs")
if __name__ == "__main__":
main()