-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathrun.py
More file actions
887 lines (734 loc) · 32.9 KB
/
run.py
File metadata and controls
887 lines (734 loc) · 32.9 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
from __future__ import annotations
import json
import random
import string
import time
from datetime import timedelta
from typing import TYPE_CHECKING, Any
from apify_client._docs import docs_group
from apify_client._logging import create_redirect_logger
from apify_client._models import Run, RunResponse
from apify_client._resource_clients._resource_client import ResourceClient, ResourceClientAsync
from apify_client._status_message_watcher import StatusMessageWatcher, StatusMessageWatcherAsync
from apify_client._streamed_log import StreamedLog, StreamedLogAsync
from apify_client._utils import encode_key_value_store_record_value, response_to_dict, to_safe_id, to_seconds
if TYPE_CHECKING:
import logging
from decimal import Decimal
from apify_client._models import GeneralAccess
from apify_client._resource_clients import (
DatasetClient,
DatasetClientAsync,
KeyValueStoreClient,
KeyValueStoreClientAsync,
LogClient,
LogClientAsync,
RequestQueueClient,
RequestQueueClientAsync,
)
from apify_client._types import Timeout
@docs_group('Resource clients')
class RunClient(ResourceClient):
"""Sub-client for managing a specific Actor run.
Provides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.
Obtain an instance via an appropriate method on the `ApifyClient` class.
"""
def __init__(
self,
*,
resource_id: str,
resource_path: str = 'actor-runs',
**kwargs: Any,
) -> None:
super().__init__(
resource_id=resource_id,
resource_path=resource_path,
**kwargs,
)
def get(self, *, timeout: Timeout = 'long') -> Run | None:
"""Return information about the Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run
Args:
timeout: Timeout for the API HTTP request.
Returns:
The retrieved Actor run data.
"""
result = self._get(timeout=timeout)
if result is None:
return None
return RunResponse.model_validate(result).data
def update(
self,
*,
status_message: str | None = None,
is_status_message_terminal: bool | None = None,
general_access: GeneralAccess | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Update the run with the specified fields.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run
Args:
status_message: The new status message for the run.
is_status_message_terminal: Set this flag to True if this is the final status message of the Actor run.
general_access: Determines how others can access the run and its storages.
timeout: Timeout for the API HTTP request.
Returns:
The updated run.
"""
result = self._update(
timeout=timeout,
statusMessage=status_message,
isStatusMessageTerminal=is_status_message_terminal,
generalAccess=general_access,
)
return RunResponse.model_validate(result).data
def delete(self, *, timeout: Timeout = 'long') -> None:
"""Delete the run.
https://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run
Args:
timeout: Timeout for the API HTTP request.
"""
self._delete(timeout=timeout)
def abort(self, *, gracefully: bool | None = None, timeout: Timeout = 'long') -> Run:
"""Abort the Actor run which is starting or currently running and return its details.
https://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run
Args:
gracefully: If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`
events into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan
to resurrect the run later.
timeout: Timeout for the API HTTP request.
Returns:
The data of the aborted Actor run.
"""
response = self._http_client.call(
url=self._build_url('abort'),
method='POST',
params=self._build_params(gracefully=gracefully),
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
def wait_for_finish(
self,
*,
wait_duration: timedelta | None = None,
timeout: Timeout = 'no_timeout',
) -> Run | None:
"""Wait synchronously until the run finishes or the server times out.
Args:
wait_duration: How long does the client wait for run to finish. None for indefinite.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,
TIMED_OUT, ABORTED), then the run has not yet finished.
"""
response = self._wait_for_finish(
url=self._build_url(),
params=self._build_params(),
wait_duration=wait_duration,
timeout=timeout,
)
if response is None:
return None
return Run.model_validate(response)
def metamorph(
self,
*,
target_actor_id: str,
target_actor_build: str | None = None,
run_input: Any = None,
content_type: str | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Transform an Actor run into a run of another Actor with a new input.
https://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run
Args:
target_actor_id: ID of the target Actor that the run should be transformed into.
target_actor_build: The build of the target Actor. It can be either a build tag or build number.
By default, the run uses the build specified in the default run configuration for the target Actor
(typically the latest build).
run_input: The input to pass to the new run.
content_type: The content type of the input.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
run_input, content_type = encode_key_value_store_record_value(run_input, content_type)
safe_target_actor_id = to_safe_id(target_actor_id)
request_params = self._build_params(targetActorId=safe_target_actor_id, build=target_actor_build)
response = self._http_client.call(
url=self._build_url('metamorph'),
method='POST',
headers={'content-type': content_type},
data=run_input,
params=request_params,
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
def resurrect(
self,
*,
build: str | None = None,
memory_mbytes: int | None = None,
run_timeout: timedelta | None = None,
max_items: int | None = None,
max_total_charge_usd: Decimal | None = None,
restart_on_error: bool | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Resurrect a finished Actor run.
Only finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.
Run status will be updated to RUNNING and its container will be restarted with the same default storages.
https://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run
Args:
build: Which Actor build the resurrected run should use. It can be either a build tag or build number.
By default, the resurrected run uses the same build as before.
memory_mbytes: New memory limit for the resurrected run, in megabytes. By default, the resurrected run
uses the same memory limit as before.
run_timeout: New timeout for the resurrected run. By default, the resurrected run uses the
same timeout as before.
max_items: Maximum number of items that the resurrected pay-per-result run will return. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
max_total_charge_usd: Maximum cost for the resurrected pay-per-event run in USD. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
restart_on_error: Determines whether the resurrected run will be restarted if it fails.
By default, the resurrected run uses the same setting as before.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
request_params = self._build_params(
build=build,
memory=memory_mbytes,
timeout=to_seconds(run_timeout, as_int=True),
maxItems=max_items,
maxTotalChargeUsd=max_total_charge_usd,
restartOnError=restart_on_error,
)
response = self._http_client.call(
url=self._build_url('resurrect'),
method='POST',
params=request_params,
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
def reboot(self, *, timeout: Timeout = 'long') -> Run:
"""Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.
https://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run
Args:
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
response = self._http_client.call(
url=self._build_url('reboot'),
method='POST',
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
def dataset(self) -> DatasetClient:
"""Get the client for the default dataset of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default dataset of this Actor run.
"""
return self._client_registry.dataset_client(
resource_path='dataset',
**self._base_client_kwargs,
)
def key_value_store(self) -> KeyValueStoreClient:
"""Get the client for the default key-value store of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default key-value store of this Actor run.
"""
return self._client_registry.key_value_store_client(
resource_path='key-value-store',
**self._base_client_kwargs,
)
def request_queue(self) -> RequestQueueClient:
"""Get the client for the default request queue of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default request_queue of this Actor run.
"""
return self._client_registry.request_queue_client(
resource_path='request-queue',
**self._base_client_kwargs,
)
def log(self) -> LogClient:
"""Get the client for the log of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the log of this Actor run.
"""
return self._client_registry.log_client(
resource_path='log',
**self._base_client_kwargs,
)
def get_streamed_log(
self,
to_logger: logging.Logger | None = None,
*,
from_start: bool = True,
timeout: Timeout = 'long',
) -> StreamedLog:
"""Get `StreamedLog` instance that can be used to redirect logs.
`StreamedLog` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the redirected messages. If not provided, a new logger is created
from_start: If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly
arrived logs will be redirected. This can be useful for redirecting only a small portion of relevant
logs for long-running Actors in stand-by.
timeout: Timeout for the API HTTP request.
Returns:
`StreamedLog` instance for redirected logs.
"""
run_data = self.get(timeout=timeout)
run_id = f'runId:{run_data.id}' if run_data and run_data.id else ''
actor_id = run_data.act_id if run_data else ''
actor_data = None
if actor_id:
actor_client = self._client_registry.actor_client(
resource_id=actor_id,
base_url=self._base_url,
public_base_url=self._public_base_url,
http_client=self._http_client,
client_registry=self._client_registry,
)
actor_data = actor_client.get(timeout=timeout)
actor_name = actor_data.name if actor_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StreamedLog(log_client=self.log(), to_logger=to_logger, from_start=from_start)
def charge(
self,
event_name: str,
count: int | None = None,
idempotency_key: str | None = None,
timeout: Timeout = 'long',
) -> None:
"""Charge for an event of a Pay-Per-Event Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run
Args:
event_name: The name of the event to charge for.
count: The number of events to charge. Defaults to 1 if not provided.
idempotency_key: A unique key to ensure idempotent charging. If not provided,
one will be auto-generated.
timeout: Timeout for the API HTTP request.
Raises:
ValueError: If event_name is empty or not provided.
"""
if not event_name:
raise ValueError('event_name is required for charging an event')
if idempotency_key is None:
random_suffix = ''.join(random.choices(string.ascii_letters + string.digits, k=6))
timestamp_ms = int(time.time() * 1000)
idempotency_key = f'{self._resource_id}-{event_name}-{timestamp_ms}-{random_suffix}'
self._http_client.call(
url=self._build_url('charge'),
method='POST',
headers={
'idempotency-key': idempotency_key,
'content-type': 'application/json',
},
data=json.dumps(
{
'eventName': event_name,
'count': count or 1,
}
),
timeout=timeout,
)
def get_status_message_watcher(
self,
to_logger: logging.Logger | None = None,
check_period: timedelta = timedelta(seconds=1),
*,
timeout: Timeout = 'long',
) -> StatusMessageWatcher:
"""Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.
`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the status and status messages. If not provided, a new logger is
created.
check_period: The period with which the status message will be polled.
timeout: Timeout for the API HTTP request.
Returns:
`StatusMessageWatcher` instance.
"""
run_data = self.get(timeout=timeout)
run_id = f'runId:{run_data.id}' if run_data and run_data.id else ''
actor_id = run_data.act_id if run_data else ''
actor_data = None
if actor_id:
actor_client = self._client_registry.actor_client(
resource_id=actor_id,
base_url=self._base_url,
public_base_url=self._public_base_url,
http_client=self._http_client,
client_registry=self._client_registry,
)
actor_data = actor_client.get(timeout=timeout)
actor_name = actor_data.name if actor_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StatusMessageWatcher(run_client=self, to_logger=to_logger, check_period=check_period)
@docs_group('Resource clients')
class RunClientAsync(ResourceClientAsync):
"""Sub-client for managing a specific Actor run.
Provides methods to manage a specific Actor run, e.g. get it, update it, abort it, or wait for it to finish.
Obtain an instance via an appropriate method on the `ApifyClientAsync` class.
"""
def __init__(
self,
*,
resource_id: str,
resource_path: str = 'actor-runs',
**kwargs: Any,
) -> None:
super().__init__(
resource_id=resource_id,
resource_path=resource_path,
**kwargs,
)
async def get(self, *, timeout: Timeout = 'long') -> Run | None:
"""Return information about the Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/get-run
Args:
timeout: Timeout for the API HTTP request.
Returns:
The retrieved Actor run data.
"""
result = await self._get(timeout=timeout)
if result is None:
return None
return RunResponse.model_validate(result).data
async def update(
self,
*,
status_message: str | None = None,
is_status_message_terminal: bool | None = None,
general_access: GeneralAccess | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Update the run with the specified fields.
https://docs.apify.com/api/v2#/reference/actor-runs/run-object/update-run
Args:
status_message: The new status message for the run.
is_status_message_terminal: Set this flag to True if this is the final status message of the Actor run.
general_access: Determines how others can access the run and its storages.
timeout: Timeout for the API HTTP request.
Returns:
The updated run.
"""
result = await self._update(
timeout=timeout,
statusMessage=status_message,
isStatusMessageTerminal=is_status_message_terminal,
generalAccess=general_access,
)
return RunResponse.model_validate(result).data
async def abort(self, *, gracefully: bool | None = None, timeout: Timeout = 'long') -> Run:
"""Abort the Actor run which is starting or currently running and return its details.
https://docs.apify.com/api/v2#/reference/actor-runs/abort-run/abort-run
Args:
gracefully: If True, the Actor run will abort gracefully. It will send `aborting` and `persistStates`
events into the run and force-stop the run after 30 seconds. It is helpful in cases where you plan
to resurrect the run later.
timeout: Timeout for the API HTTP request.
Returns:
The data of the aborted Actor run.
"""
response = await self._http_client.call(
url=self._build_url('abort'),
method='POST',
params=self._build_params(gracefully=gracefully),
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
async def wait_for_finish(
self,
*,
wait_duration: timedelta | None = None,
timeout: Timeout = 'no_timeout',
) -> Run | None:
"""Wait asynchronously until the run finishes or the server times out.
Args:
wait_duration: How long does the client wait for run to finish. None for indefinite.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data. If the status on the object is not one of the terminal statuses (SUCCEEDED, FAILED,
TIMED_OUT, ABORTED), then the run has not yet finished.
"""
response = await self._wait_for_finish(
url=self._build_url(),
params=self._build_params(),
wait_duration=wait_duration,
timeout=timeout,
)
return Run.model_validate(response) if response is not None else None
async def delete(self, *, timeout: Timeout = 'long') -> None:
"""Delete the run.
https://docs.apify.com/api/v2#/reference/actor-runs/delete-run/delete-run
Args:
timeout: Timeout for the API HTTP request.
"""
await self._delete(timeout=timeout)
async def metamorph(
self,
*,
target_actor_id: str,
target_actor_build: str | None = None,
run_input: Any = None,
content_type: str | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Transform an Actor run into a run of another Actor with a new input.
https://docs.apify.com/api/v2#/reference/actor-runs/metamorph-run/metamorph-run
Args:
target_actor_id: ID of the target Actor that the run should be transformed into.
target_actor_build: The build of the target Actor. It can be either a build tag or build number.
By default, the run uses the build specified in the default run configuration for the target Actor
(typically the latest build).
run_input: The input to pass to the new run.
content_type: The content type of the input.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
run_input, content_type = encode_key_value_store_record_value(run_input, content_type)
safe_target_actor_id = to_safe_id(target_actor_id)
request_params = self._build_params(
targetActorId=safe_target_actor_id,
build=target_actor_build,
)
response = await self._http_client.call(
url=self._build_url('metamorph'),
method='POST',
headers={'content-type': content_type},
data=run_input,
params=request_params,
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
async def resurrect(
self,
*,
build: str | None = None,
memory_mbytes: int | None = None,
run_timeout: timedelta | None = None,
max_items: int | None = None,
max_total_charge_usd: Decimal | None = None,
restart_on_error: bool | None = None,
timeout: Timeout = 'long',
) -> Run:
"""Resurrect a finished Actor run.
Only finished runs, i.e. runs with status FINISHED, FAILED, ABORTED and TIMED-OUT can be resurrected.
Run status will be updated to RUNNING and its container will be restarted with the same default storages.
https://docs.apify.com/api/v2#/reference/actor-runs/resurrect-run/resurrect-run
Args:
build: Which Actor build the resurrected run should use. It can be either a build tag or build number.
By default, the resurrected run uses the same build as before.
memory_mbytes: New memory limit for the resurrected run, in megabytes. By default, the resurrected run
uses the same memory limit as before.
run_timeout: New timeout for the resurrected run. By default, the resurrected run uses the
same timeout as before.
max_items: Maximum number of items that the resurrected pay-per-result run will return. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
max_total_charge_usd: Maximum cost for the resurrected pay-per-event run in USD. By default, the
resurrected run uses the same limit as before. Limit can be only increased.
restart_on_error: Determines whether the resurrected run will be restarted if it fails.
By default, the resurrected run uses the same setting as before.
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
request_params = self._build_params(
build=build,
memory=memory_mbytes,
timeout=to_seconds(run_timeout, as_int=True),
maxItems=max_items,
maxTotalChargeUsd=max_total_charge_usd,
restartOnError=restart_on_error,
)
response = await self._http_client.call(
url=self._build_url('resurrect'),
method='POST',
params=request_params,
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
async def reboot(self, *, timeout: Timeout = 'long') -> Run:
"""Reboot an Actor run. Only runs that are running, i.e. runs with status RUNNING can be rebooted.
https://docs.apify.com/api/v2#/reference/actor-runs/reboot-run/reboot-run
Args:
timeout: Timeout for the API HTTP request.
Returns:
The Actor run data.
"""
response = await self._http_client.call(
url=self._build_url('reboot'),
method='POST',
timeout=timeout,
)
result = response_to_dict(response)
return RunResponse.model_validate(result).data
def dataset(self) -> DatasetClientAsync:
"""Get the client for the default dataset of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default dataset of this Actor run.
"""
return self._client_registry.dataset_client(
resource_path='dataset',
**self._base_client_kwargs,
)
def key_value_store(self) -> KeyValueStoreClientAsync:
"""Get the client for the default key-value store of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default key-value store of this Actor run.
"""
return self._client_registry.key_value_store_client(
resource_path='key-value-store',
**self._base_client_kwargs,
)
def request_queue(self) -> RequestQueueClientAsync:
"""Get the client for the default request queue of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the default request_queue of this Actor run.
"""
return self._client_registry.request_queue_client(
resource_path='request-queue',
**self._base_client_kwargs,
)
def log(self) -> LogClientAsync:
"""Get the client for the log of the Actor run.
https://docs.apify.com/api/v2#/reference/actors/last-run-object-and-its-storages
Returns:
A client allowing access to the log of this Actor run.
"""
return self._client_registry.log_client(
resource_path='log',
**self._base_client_kwargs,
)
async def get_streamed_log(
self,
to_logger: logging.Logger | None = None,
*,
from_start: bool = True,
timeout: Timeout = 'long',
) -> StreamedLogAsync:
"""Get `StreamedLog` instance that can be used to redirect logs.
`StreamedLog` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the redirected messages. If not provided, a new logger is created
from_start: If `True`, all logs from the start of the Actor run will be redirected. If `False`, only newly
arrived logs will be redirected. This can be useful for redirecting only a small portion of relevant
logs for long-running Actors in stand-by.
timeout: Timeout for the API HTTP request.
Returns:
`StreamedLog` instance for redirected logs.
"""
run_data = await self.get(timeout=timeout)
run_id = f'runId:{run_data.id}' if run_data and run_data.id else ''
actor_id = run_data.act_id if run_data else ''
actor_data = None
if actor_id:
actor_client = self._client_registry.actor_client(
resource_id=actor_id,
base_url=self._base_url,
public_base_url=self._public_base_url,
http_client=self._http_client,
client_registry=self._client_registry,
)
actor_data = await actor_client.get(timeout=timeout)
actor_name = actor_data.name if actor_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StreamedLogAsync(log_client=self.log(), to_logger=to_logger, from_start=from_start)
async def charge(
self,
event_name: str,
count: int | None = None,
idempotency_key: str | None = None,
timeout: Timeout = 'long',
) -> None:
"""Charge for an event of a Pay-Per-Event Actor run.
https://docs.apify.com/api/v2#/reference/actor-runs/charge-events-in-run
Args:
event_name: The name of the event to charge for.
count: The number of events to charge. Defaults to 1 if not provided.
idempotency_key: A unique key to ensure idempotent charging. If not provided,
one will be auto-generated.
timeout: Timeout for the API HTTP request.
Raises:
ValueError: If event_name is empty or not provided.
"""
if not event_name:
raise ValueError('event_name is required for charging an event')
if idempotency_key is None:
random_suffix = ''.join(random.choices(string.ascii_letters + string.digits, k=6))
timestamp_ms = int(time.time() * 1000)
idempotency_key = f'{self._resource_id}-{event_name}-{timestamp_ms}-{random_suffix}'
await self._http_client.call(
url=self._build_url('charge'),
method='POST',
headers={
'idempotency-key': idempotency_key,
'content-type': 'application/json',
},
data=json.dumps(
{
'eventName': event_name,
'count': count or 1,
}
),
timeout=timeout,
)
async def get_status_message_watcher(
self,
to_logger: logging.Logger | None = None,
check_period: timedelta = timedelta(seconds=1),
*,
timeout: Timeout = 'long',
) -> StatusMessageWatcherAsync:
"""Get `StatusMessageWatcher` instance that can be used to redirect status and status messages to logs.
`StatusMessageWatcher` can be explicitly started and stopped or used as a context manager.
Args:
to_logger: `Logger` used for logging the status and status messages. If not provided, a new logger is
created.
check_period: The period with which the status message will be polled.
timeout: Timeout for the API HTTP request.
Returns:
`StatusMessageWatcher` instance.
"""
run_data = await self.get(timeout=timeout)
run_id = f'runId:{run_data.id}' if run_data and run_data.id else ''
actor_id = run_data.act_id if run_data else ''
actor_data = None
if actor_id:
actor_client = self._client_registry.actor_client(
resource_id=actor_id,
base_url=self._base_url,
public_base_url=self._public_base_url,
http_client=self._http_client,
client_registry=self._client_registry,
)
actor_data = await actor_client.get(timeout=timeout)
actor_name = actor_data.name if actor_data else ''
if not to_logger:
name = ' '.join(part for part in (actor_name, run_id) if part)
to_logger = create_redirect_logger(f'apify.{name}')
return StatusMessageWatcherAsync(run_client=self, to_logger=to_logger, check_period=check_period)