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
preprocess_nlp_jp18-0.4.tar.gz
(11.6 kB
view details)
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.4.tar.gz.
File metadata
- Download URL: preprocess_nlp_jp18-0.4.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
381089cfa101e7d16b665e867343b5e6408d0b34d7ddf52e0d8bc6f52b130b53
|
|
| MD5 |
9af347905b162e0a71bc4db19c967c73
|
|
| BLAKE2b-256 |
d86e7ae26e8f47b4243b7ea2a491049b9665dcbd0523db9cb6a26453f3481a34
|
File details
Details for the file preprocess_nlp_jp18-0.4-py3-none-any.whl.
File metadata
- Download URL: preprocess_nlp_jp18-0.4-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37333550edd5f9e54f409bdb1688d7ff10cf4f510fba45a93764ac726856bace
|
|
| MD5 |
cc4132feb453f6994de168c134cdfa22
|
|
| BLAKE2b-256 |
8604ac8152be7b0b60762946842abede2add51deb664fcf118aa1b2d02c7fd65
|