Skip to content

Catch up to JS client #85

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ee48b90
Added support for asynchronous usage via `ApifyClientAsync`
fnesveda Nov 11, 2022
5a9949d
Merge branch 'master' into feature/async-client
fnesveda Nov 16, 2022
c93ef86
Merge branch 'master' into feature/async-client
fnesveda Nov 21, 2022
c7d948a
Add tests for `_make_async_docs`
fnesveda Nov 21, 2022
913bf5c
Catch up to JS client
jirimoravcik Nov 21, 2022
d3de2b4
fix docs
jirimoravcik Nov 21, 2022
660c978
Catch up to JS client
jirimoravcik Nov 21, 2022
c55d3d6
fix docs
jirimoravcik Nov 21, 2022
e7608f0
merge
jirimoravcik Nov 28, 2022
1e681a1
docs
jirimoravcik Nov 28, 2022
ef66ddc
add async stuff, fix stuff with schema
jirimoravcik Nov 28, 2022
d453655
fix
jirimoravcik Nov 28, 2022
2683e0b
actor env var clients
jirimoravcik Nov 28, 2022
f4eb589
fix lint
jirimoravcik Nov 28, 2022
b47e8e9
title for task and schedule
jirimoravcik Nov 29, 2022
1c99ea1
docs
jirimoravcik Nov 29, 2022
190a381
fix
jirimoravcik Nov 29, 2022
d0b1f70
env var clients in version client
jirimoravcik Nov 29, 2022
85839d8
fix headers
jirimoravcik Nov 29, 2022
b9a1d26
Added logger with basic debugging info
fnesveda Nov 29, 2022
98d6c4b
Merge branch 'feature/add-logger' into feature/catch-up-to-js-client
jirimoravcik Nov 29, 2022
3f5a0ee
address pr comments
jirimoravcik Nov 29, 2022
8f4c2a5
Merge branch 'master' into feature/catch-up-to-js-client
fnesveda Nov 30, 2022
6f6f413
Merge branch 'feature/catch-up-to-js-client' of github.com:apify/apif…
jirimoravcik Nov 29, 2022
a672b04
update changelog
jirimoravcik Dec 1, 2022
520bcc1
Update CHANGELOG.md
jirimoravcik Dec 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Changelog
- added method to update status message for a run
- added option to set up webhooks for actor builds
- added logger with basic debugging info
- added support for `schema` parameter in `get_or_create` method for datasets and key-value stores
- added support for `title` parameter in task and schedule methods
- added `x-apify-workflow-key` header support
- added support for `flatten` and `view` parameters in dataset items methods
- added support for `origin` parameter in actor/task run methods
- added clients for actor version environment variables

### Internal changes

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ For usage instructions, check the documentation on [Apify Docs](https://docs.api
For local development, it is required to have Python 3.8 installed.

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

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

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

### Linting and Testing

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

### Documentation

Expand Down
Loading