Vlada Dusek
Vlada Dusek
Blocked by https://github.com/apify/crawlee-py/issues/79
Hi @Hardik7843, thanks for the bug report, I was able to reproduce it and will take a look at this soon.
Hi @Hardik7843, I just want you to provide a temporary workaround until it's fixed. ```python from apify_client import ApifyClient from apify_shared.consts import ActorJobStatus, MetaOrigin TOKEN = 'apify_api_...' TASK_ID = '...'...
Closing as the issue was resolved in https://github.com/apify/apify-client-python/pull/192. Check a new client release [1.7.0](https://github.com/apify/apify-client-python/releases/tag/v1.7.0).
My IDE was not able to recognize that, instead it raised an accessing of non-existing field error. The `self.http_client.call` is annotated to return `httpx.Response` object. So it might be the...
> Yeah, that's probably it. I wonder how this ever passed lint without a #noqa comment 🤷 I think because accessing fields is checked by Mypy. That's the reason why...
Closing, as it turns out the `__all__` variable is used by Pylance to recognize the public interface of the package.
Hi @DanielAvdar, migration to Poetry was planned in Q2-Q3 of this year, after we thoroughly tested it in our internal repositories. Also, I believe `twine` could be replaced by `poetry`...
Closing as Poetry was added in https://github.com/apify/apify-sdk-python/pull/247.
> But in a lot of places we use assert just as a type assertion to fool Mypy, maybe we can keep it there? I got it, however, I suppose...