Skip to content

Commit b7a390b

Browse files
committed
Merge remote-tracking branch 'origin/master' into alias-storage-configuration-mapping
2 parents bc7d13d + 2686636 commit b7a390b

File tree

4 files changed

+445
-444
lines changed

4 files changed

+445
-444
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
<!-- git-cliff-unreleased-start -->
66
## 3.2.2 - **not yet released**
77

8+
### 🐛 Bug Fixes
9+
10+
- Resolve LogRecord attribute conflict in event manager logging ([#802](https://github.com/apify/apify-sdk-python/pull/802)) ([e1bdbc9](https://github.com/apify/apify-sdk-python/commit/e1bdbc9e303c24571b9511f43ec0815e7e9f4b55)) by [@vdusek](https://github.com/vdusek)
11+
812

913
<!-- git-cliff-unreleased-end -->
1014
## [3.2.1](https://github.com/apify/apify-sdk-python/releases/tag/v3.2.1) (2026-02-17)

docs/02_concepts/code/06_interacting_call.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ async def main() -> None:
88
# Start the apify/screenshot-url Actor.
99
actor_run = await Actor.call(
1010
actor_id='apify/screenshot-url',
11-
run_input={'url': 'http://example.com', 'delay': 10000},
11+
run_input={
12+
'urls': [{'url': 'https://www.apify.com/'}],
13+
'delay': 1000,
14+
'waitUntil': 'load',
15+
},
1216
)
1317

1418
if actor_run is None:
@@ -18,10 +22,10 @@ async def main() -> None:
1822
run_client = Actor.apify_client.run(actor_run.id)
1923
await run_client.wait_for_finish()
2024

21-
# Get the Actor output from the key-value store.
22-
kvs_client = run_client.key_value_store()
23-
output = await kvs_client.get_record('OUTPUT')
24-
Actor.log.info(f'Actor output: {output}')
25+
# Get the Actor output from the dataset.
26+
dataset_client = run_client.dataset()
27+
item_list = await dataset_client.list_items()
28+
Actor.log.info(f'Actor output: {item_list.items}')
2529

2630

2731
if __name__ == '__main__':

uv.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)