itemloaders is a library that helps you collect data from HTML and XML sources.
It comes in handy to extract data from web pages, as it supports data extraction using CSS and XPath Selectors.
It’s specially useful when you need to standardize the data from many sources. For example, it allows you to have all your casting and parsing rules in a single place.
Here is an example to get you started:
from itemloaders import ItemLoader
from parsel import Selector
html_data = '''
<!DOCTYPE html>
<html>
<head>
<title>Some random product page</title>
</head>
<body>
<div class="product_name">Some random product page</div>
<p id="price">$ 100.12</p>
</body>
</html>
'''
loader = ItemLoader(selector=Selector(html_data))
loader.add_xpath('name', '//div[@class="product_name"]/text()')
loader.add_xpath('name', '//div[@class="product_title"]/text()')
loader.add_css('price', '#price::text')
loader.add_value('last_updated', 'today') # you can also use literal values
item = loader.load_item()
item
# {'name': ['Some random product page'], 'price': ['$ 100.12'], 'last_updated': ['today']}
For more information, check out the documentation.
Contributing
All contributions are welcome!
If you want to review some code, check open Pull Requests here
If you want to submit a code change
File an issue here, if there isn’t one yet
Fork this repository
Create a branch to work on your changes
Run pre-commit install to install pre-commit hooks
Push your local branch and submit a Pull Request
Release files for itemloaders 1.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| itemloaders-1.4.0.tar.gz | 29.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| itemloaders-1.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 41.9 kB
Release files / itemloaders-1.4.0.tar.gz
| Download URL | itemloaders-1.4.0.tar.gz |
|---|---|
| Size | 29.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b5338308a819098f43525b7afc5f7d46ba338ba4710f5ebe7a21b3b47bb29929
|
|
BLAKE2b-256 checksum How to use checksums |
05bd916f4fd26e14e6ad292b69693ccca4f192bcaf9f817ba7d6f7162dbbd835
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jan 29, 2026.
Transparency logRelease files / itemloaders-1.4.0-py3-none-any.whl
| Download URL | itemloaders-1.4.0-py3-none-any.whl |
|---|---|
| Size | 12.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
202b6f855299b4cadfdf78bb93a6cf977899e3c40c4c54524e120a444e65b5ac
|
|
BLAKE2b-256 checksum How to use checksums |
ac71d9cd0e4c6a4aace991009fc47362ce9251be0fbcf2b6c533f918b31854d5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jan 29, 2026.
Transparency log