File tree Expand file tree Collapse file tree 4 files changed +37
-32
lines changed Expand file tree Collapse file tree 4 files changed +37
-32
lines changed Original file line number Diff line number Diff line change
1
+ # Cache
1
2
__pycache__
2
3
.mypy_cache
3
4
.pytest_cache
4
5
.ruff_cache
5
6
7
+ # Virtual envs
6
8
.venv
7
9
.direnv
8
10
.envrc
9
11
.python-version
10
12
13
+ # Poetry
14
+ poetry.toml
15
+ poetry.lock
16
+
17
+ # Mise
18
+ mise.toml
19
+ .mise.toml
20
+
21
+ # Egg and build artifacts
11
22
* .egg-info /
12
23
* .egg
13
24
dist /
14
25
build /
15
- .coverage
26
+
27
+ # Coverage reports
28
+ .coverage *
16
29
htmlcov
17
30
31
+ # IDE, editors
18
32
.vscode
19
33
.idea
20
34
.DS_Store
35
+ .nvim.lua
36
+ Session.vim
21
37
38
+ # Docs
22
39
docs /changelog.md
23
40
24
- # default folder for memory storage data
41
+ # Website build artifacts, node dependencies
42
+ website /build
43
+ website /node_modules
44
+ website /.yarn
45
+ website /.docusaurus
46
+ website /api-typedoc-generated.json
47
+ website /apify-shared-docspec-dump.jsonl
48
+ website /docspec-dump.jsonl
49
+ website /module_shortcuts.json
50
+ website /typedoc-types *
51
+
52
+ # Default directory for memory storage
25
53
storage /
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : local
3
3
hooks :
4
- - id : lint
5
- name : Lint codebase
4
+ - id : lint-check
5
+ name : Lint check
6
6
entry : make lint
7
7
language : system
8
8
pass_filenames : false
9
9
10
10
- id : type-check
11
- name : Type-check codebase
11
+ name : Type check
12
12
entry : make type-check
13
13
language : system
14
14
pass_filenames : false
15
15
16
- - id : check- async-docstrings
17
- name : Check async docstrings
16
+ - id : async-docstrings-check
17
+ name : Async docstrings check
18
18
entry : make check-async-docstrings
19
19
language : system
20
20
pass_filenames : false
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ apify_client = ApifyClient('MY-APIFY-TOKEN')
273
273
# Start an Actor and waits for it to finish
274
274
finished_actor_run = apify_client.actor(' username/actor-name' ).call()
275
275
276
- # Starts an Actor and waits maximum 60s (1 minute) for the finish
276
+ # Starts an Actor and waits maximum 60s (1 minute) for the finish
277
277
actor_run = apify_client.actor(' username/actor-name' ).start(wait_for_finish = 60 )
278
278
```
279
279
@@ -304,7 +304,7 @@ while True:
304
304
response = dataset_client.list_items(limit = limit, offset = offset)
305
305
items = response.items
306
306
total = response.total
307
-
307
+
308
308
print (f ' Fetched { len (items)} items ' )
309
309
310
310
# Merge new items with other already loaded items
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments