Provides processors for the itemloaders package, commonly used with scrapy.
Project description
Scrapy Processors
Scrapy Processors is a collection of Processor classes meant to extend the collection provided in the itemloaders package, commonly used with the scrapy webscraping framework.
https://docs.scrapy.org/en/latest/topics/loaders.html
Repositories
Installation
To install Scrapy Processors, simply use pip:
$ pip install scrapy-processors
Usage
Here is an overview of the processors available in the package:
MapCompose
: A processor that allows you to specify a list of callables that will be applied sequentially to a value, or to each value in a list of values. It supports functions (regular functions, lambda or methods), objects with a__call__
method or classes that once initialized return an object with a__call__
method. This class inherits from itemloaders.processors.MapCompose and overrides its constructor and defines__add__
.Processor
: A base class for creating custom processors. Subclasses ofProcessor
should implement theprocess_value
method.EnsureEncoding
: A processor that converts a string to a specified encoding, defaults to utf-8 & ignores errors.NormalizeWhitespace
: A processor that normalizes whitespace in a string by removing zero-width spaces, replacing multiple whitespaces with a single whitespace, removing leading whitespace in front of punctuation and finally removing leading/trailing whitespaces. default punctuation=(',', '.', '!', '?', ';', ':')PriceParser
: A processor that converts a string representing a price to aPrice
object using theprice_parser
library.RemoveHTMLTags
: A processor that removes HTML tags from a string using theBeautifulSoup
library.Demojize
: A processor that replaces Unicode emojis in a string with emoji shortcodes using theemoji
library.RemoveEmojis
: A processor that removes emojis from a string using theemoji
library.StripQuotes
: A processor that removes any number of leading/trailing quotes or tick marks from a string.StringToDateTime
: A processor that converts a string representing a date and time to adatetime.datetime
object. default format='%Y-%m-%d, %H:%M:%S'StringToDate
: A processor that converts a string representing a date to adatetime.date
object. default format='%Y-%m-%d'StringToTime
: A processor that converts a string representing a time to adatetime.time
object. default format='%H:%M:%S'TakeAll
: A processor that returns all values passed to it. This is a renaming of the built-inIdentity
processor.TakeAllTruthy
: A processor that returns all truthy values passed to it. It also accepts a default value to return if no values are truthy.
# example.py
from scrapy_processors import EnsureEncoding, MapCompose, NormalizeWhitespace, Processor
# Example usage of MapCompose
processor = MapCompose(NormalizeWhitespace, str.upper)
result = processor(['Hello , World!\n', 'Hi!'])
print(result) # Output: ['HELLO, WORLD!', 'HI!']
# Example usage of EnsureEncoding processor
processor = EnsureEncoding(encoding='utf-8', ignore=True)
result = processor('Hello')
print(result) # Output: 'Hello'
# Example usage of custom Processor subclass
class MyProcessor(Processor):
def process_value(self, value):
return value + ' processed'
processor = MyProcessor()
result = processor(['Hello', 'World'])
print(result) # Output: ['Hello processed', 'World processed']
Opening an Issue
If you encounter a problem with the project or have a feature request, you can open an issue to let us know.
To open an issue, please follow these steps:
- Go to the Issues tab on the github repository page.
- Click on the "New Issue" button.
- Provide a descriptive title for the issue.
- In the issue description, provide detailed information about the problem you are experiencing or the feature you are requesting.
- If applicable, include steps to reproduce the problem or any relevant code examples.
- Add appropriate labels to categorize the issue (e.g., bug, enhancement, documentation).
- Click on the "Submit new issue" button to create the issue.
Once you have opened an issue, our team will review it and provide assistance or discuss the requested feature.
Note: Before opening a new issue, please search the existing issues to see if a similar issue has already been reported. This helps avoid duplicates and allows us to focus on resolving existing problems.
Contributing
Thank you for considering contributing to this project! We welcome your contributions to help make this project better.
To contribute to this project, please follow these steps:
-
Fork the repository by clicking on the "Fork" button at the top of the repository page. This will create a copy of the repository in your GitHub account.
-
Clone the forked repository to your local machine using Git:
$ git clone https://github.com/your-username/scrapy-processors.git
-
Create a new branch for your changes:
$ git checkout -b feature
-
Make your desired changes to the codebase.
-
Commit your changes with descriptive commit messages:
$ git commit -m "Add new feature"
-
Push your changes to your forked repository:
$ git push origin feature
-
Open a pull request (PR) from your forked repository to the original repository's
master
branch. -
Provide a clear and descriptive title for your PR and explain the changes you have made.
-
Wait for the project maintainers to review your PR. You may need to make additional changes based on their feedback.
-
Once your PR is approved, it will be merged into the main codebase. Congratulations on your contribution!
If you have any questions or need further assistance, feel free to open an issue or reach out to the project maintainers.
Happy contributing!
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scrapy_processors-1.1.1.tar.gz
.
File metadata
- Download URL: scrapy_processors-1.1.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.19.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 659240c15baf6b05e9cbd4c48a33373daadf4207856d41a269af48171cae414f |
|
MD5 | af1fe82d92828d0b961ddb988ad4cbb7 |
|
BLAKE2b-256 | 15b088acc24e55e5fa549ae08b0746611093678b015a2c4666a22654aa4e9f3c |
File details
Details for the file scrapy_processors-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: scrapy_processors-1.1.1-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.19.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c4a921a9e2d349e73e2225729bca0ff30ccae607357f84ed617d96b0d1880f4 |
|
MD5 | 745469b677ed5abb139d35f535a9507b |
|
BLAKE2b-256 | 63ec282928a2d3d82611b6b9d030f4c848844028d15c1a2b511f14efa17ec652 |