Skip to content

Commit 922c718

Browse files
Catch up to JS client (#85)
Co-authored-by: František Nesveda <[email protected]>
1 parent 7d30b6c commit 922c718

17 files changed

+505
-46
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Changelog
1818
- added method to update status message for a run
1919
- added option to set up webhooks for actor builds
2020
- added logger with basic debugging info
21+
- added support for `schema` parameter in `get_or_create` method for datasets and key-value stores
22+
- added support for `title` parameter in task and schedule methods
23+
- added `x-apify-workflow-key` header support
24+
- added support for `flatten` and `view` parameters in dataset items methods
25+
- added support for `origin` parameter in actor/task run methods
26+
- added clients for actor version environment variables
2127

2228
### Internal changes
2329

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ For usage instructions, check the documentation on [Apify Docs](https://docs.api
2121
For local development, it is required to have Python 3.8 installed.
2222

2323
It is recommended to set up a virtual environment while developing this package to isolate your development environment,
24-
however, due to the many varied ways Python can be installed and virtual environments can be set up,
24+
however, due to the many varied ways Python can be installed, and virtual environments can be set up,
2525
this is left up to the developers to do themselves.
2626

27-
One recommended way is with the builtin `venv` module:
27+
One recommended way is with the built-in `venv` module:
2828

2929
```bash
3030
python3 -m venv .venv
@@ -44,7 +44,7 @@ We use `autopep8` and `isort` to automatically format the code to a common forma
4444

4545
### Linting and Testing
4646

47-
We use `flake8` for linting, `mypy` for type checking and `pytest` for unit testing. To run these tools, just run `make check-all`.
47+
We use `flake8` for linting, `mypy` for type checking and `pytest` for unit testing. To run these tools, just run `make check-code`.
4848

4949
### Documentation
5050

0 commit comments

Comments
 (0)