Kevin Lloyd Bernal
Kevin Lloyd Bernal
Hi @FayzulSaimun , unfortunately, AutoExtact doesn't support browser actions nor will be supporting it in the future. On the other hand, the new [Zyte Data API](https://docs.zyte.com/zyte-api/get-started.html), particularly the [`/extract` endpoint](https://docs.zyte.com/zyte-api/openapi.html#operation/extract),...
It'd be cool if we also have **pre-commit** hooks available with `isort` and `flake8` as well. :) Ref: https://github.com/scrapinghub/web-poet/blob/master/.pre-commit-config.yaml
Thanks @Gallaecio . Following your suggestion alongside @kmike's (during our call), we can compare the following approaches. First, let's assume we have the following items: ```python @attrs.define class Item: x:...
> Does it mean you can either pass include fields, or exclude fields, but not both at the same time? Yes. Though we can include the possibility of `include=["x", "y"],...
From the new propsal in #120[,](https://github.com/scrapinghub/web-poet/pull/120,) we can also have an **Approach 3**: ```python from web_poet import field @attrs.define class SelectFields: fields: Optional[Dict[str, bool]] = None # Compatible with the...
The use case for this PR is ready for review, specifically the `tests/test_fields.py`.
Hi @ejulio @Gallaecio! I'd like to know your thoughts on scrapy/scrapy#3795 for discussion as it's closely related to this. :)
Will wait for PR #9 to be merged before adding the docs for this.
I looked into this further and it still occurs without any Page Objects involved. The sent Zyte API requests were determined by setting `ZYTE_API_LOG_REQUESTS=True`. Given the following spider: ```python class...
Re-opening this since Case 2 is still occurring. Case 3 has been fixed though.