This is a text preprocessing package
Project description
Text Preprocessing Python Package
Installation from PyPi
You can install this package using pip as follows:
pip install preprocess_nlp_jp18
Installation from GitHub
You can install this package from GitHub as follows:
pip install git+https://github.com/jayesh1802/preprocess_nlp.git --upgrade --force-reinstall
Uninstall the Package
To uninstall the package, use the following command:
pip uninstall preprocess_nlp
Requirements
You need to install these python packages.
pip install spacy==3.7.6
python -m spacy download en_core_web_sm==3.7.1
pip install nltk==3.9.1
pip install beautifulsoup4==4.12.2
pip install textblob==0.18.0.post0
How to Use the Package
1. Basic Text Preprocessing
Lowercasing Text
import preprocess_nlp_jp18 as ps
text = "HELLO WORLD!"
processed_text = ps.to_lower_case(text)
print(processed_text) # Output: hello world!
Expanding Contractions
import preprocess_nlp_jp18 as ps
text = "I'm learning NLP."
processed_text = ps.contraction_to_expansion(text)
print(processed_text) # Output: I am learning NLP.
Removing Emails
import preprocess_nlp_jp18 as ps
text = "Contact me at example@example.com"
processed_text = ps.remove_emails(text)
print(processed_text) # Output: Contact me at
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file preprocess_nlp_jp18-0.3.tar.gz.
File metadata
- Download URL: preprocess_nlp_jp18-0.3.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c7154e79acc2021627715cc2d2d009e9f0d3595352c5881388237980b18e8c
|
|
| MD5 |
70886bf17e97b6d4919812445b1f364c
|
|
| BLAKE2b-256 |
ce5b2f3bff538465131980b736576d4d326889ef8ddeb4939f9b51d3007d320a
|
File details
Details for the file preprocess_nlp_jp18-0.3-py3-none-any.whl.
File metadata
- Download URL: preprocess_nlp_jp18-0.3-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a97ae74e85fb002805bb0d9f6996f894427895db8df78094348de10415ccefcb
|
|
| MD5 |
f81bd26d4ff4820724f6b34781a3b3b0
|
|
| BLAKE2b-256 |
e79b0e40d86a8f0bd811c9b7a67357371f1b60fc45789f3370d91bbd072ac8dc
|