We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e66de7 commit ac35b3aCopy full SHA for ac35b3a
.gitignore
@@ -56,3 +56,4 @@ data/*
56
local/*
57
*.xml
58
*.xslx
59
+*.txt
getAccessionUDFs.py
@@ -16,15 +16,6 @@
16
17
startTime = time.time()
18
19
-def findKey(d, key):
20
- if key in d:
21
- yield d[key]
22
- for k in d:
23
- if isinstance(d[k], list) and k == 'children':
24
- for i in d[k]:
25
- for j in findKey(i, key):
26
- yield j
27
-
28
baseURL = secrets.baseURL
29
user = secrets.user
30
password = secrets.password
0 commit comments