bioregistry 0.13.17__py3-none-any.whl → 0.13.19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ import logging
24
24
  import textwrap
25
25
  from collections import defaultdict
26
26
  from pathlib import Path
27
+ from time import sleep
27
28
  from typing import TYPE_CHECKING, NamedTuple, TypeAlias, cast
28
29
 
29
30
  import click
@@ -213,6 +214,7 @@ def _search(
213
214
  ):
214
215
  if pubmed_id not in pubmed_ids_to_filter:
215
216
  pubmed_to_terms[pubmed_id].append(term)
217
+ sleep(1)
216
218
  return dict(pubmed_to_terms)
217
219
 
218
220