You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To determine the the number of results use the `.get_results_size()` method, even before you download the results:
@@ -43,7 +42,7 @@ To determine the the number of results use the `.get_results_size()` method, eve
43
42
44
43
>>> other = AuthorSearch("AUTHLAST(Selten)", download=False)
45
44
>>> other.get_results_size()
46
-
27
45
+
30
47
46
48
47
49
48
Primarily, the class provides a list of `namedtuples <https://docs.python.org/3/library/collections.html#collections.namedtuple>`_ storing author EIDs, which you can use for the :doc:`AuthorRetrieval <AuthorRetrieval>` class, and corresponding information:
@@ -54,27 +53,23 @@ Primarily, the class provides a list of `namedtuples <https://docs.python.org/3/
09-s2.0-6602907525None Selten R. Reinhard Universität Bonn
74
70
75
-
areas
76
-
0 ECON (73); MATH (19); BUSI (16)
77
-
1 COMP (3)
71
+
documents affiliation_id city country areas
72
+
07660007493 Bonn Germany ECON (72); BUSI (8)
78
73
79
74
80
75
Downloaded results are cached to expedite subsequent analyses. This information may become outdated. To refresh the cached results if they exist, set `refresh=True`, or provide an integer that will be interpreted as maximum allowed number of days since the last modification date. For example, if you want to refresh all cached results older than 100 days, set `refresh=100`. Use `ab.get_cache_file_mdate()` to obtain the date of last modification, and `ab.get_cache_file_age()` to determine the number of days since the last modification.
0 commit comments