itemadapter icon indicating copy to clipboard operation
itemadapter copied to clipboard

Common interface for data container classes

Results 12 itemadapter issues
Sort by recently updated
recently updated
newest added

As we support PyPy in Scrapy we need to run tests on PyPy and have PyPy in classifiers.

enhancement
CI

I have used bump-pydantic on the code base to do the initial migration. Afterwards I had to work on some details (e.g. `__fields__` -> `model_fields`). Please note, that I am...

Since release of Pydantic 2, the implementation is broken due to massive restructs.

e.g. ```python def asdict(*, unset_values=None) -> dict: if unset_values is None: unset_values = set() return _asdict(self, unset_values) ... def _asdict(obj: Any, unset_values) -> Any: if isinstance(obj, dict): return {key: _asdict(value,...

enhancement

See https://github.com/scrapy/itemloaders/issues/50 While that issue can be addressed in a different way, I am thinking that we should make some work to minimize the CPU cost of this function. I...

enhancement

Continuation of #22 which also prevents extra packages from being imported during test execution even if they are installed. Fixes #10, closes #22

Fixes #10 Two problems with this: * ~[Merging reports](https://docs.codecov.io/docs/merging-reports) does not seem to be working, coverage report shows a 13.9% decrease that is not actually accurate.~ * `attrs` is a...

This should allow to drop some of the mock usages, and test it for real that the package works. I think a single environment without all the dependencies could work;...

enhancement
CI