We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 085828b commit 98cff89Copy full SHA for 98cff89
1 file changed
src/apify_client/_apify_client.py
@@ -136,6 +136,11 @@ def _base_kwargs(self) -> dict:
136
'client_registry': self._client_registry,
137
}
138
139
+ @property
140
+ def token(self) -> str | None:
141
+ """The Apify API token used by the client."""
142
+ return self._config.token
143
+
144
def actor(self, actor_id: str) -> ActorClient:
145
"""Retrieve the sub-client for manipulating a single Actor.
146
@@ -350,6 +355,11 @@ def _base_kwargs(self) -> dict:
350
355
351
356
352
357
358
359
360
361
362
353
363
def actor(self, actor_id: str) -> ActorClientAsync:
354
364
365
0 commit comments