.. These are examples of badges you might want to add to your README:
please update the URLs accordingly
.. image:: https://api.cirrus-ci.com/github/<USER>/nlptextprep.svg?branch=main
:alt: Built Status
:target: https://cirrus-ci.com/github/<USER>/nlptextprep
.. image:: https://readthedocs.org/projects/nlptextprep/badge/?version=latest
:alt: ReadTheDocs
:target: https://nlptextprep.readthedocs.io/en/stable/
.. image:: https://img.shields.io/coveralls/github/<USER>/nlptextprep/main.svg
:alt: Coveralls
:target: https://coveralls.io/r/<USER>/nlptextprep
.. image:: https://img.shields.io/pypi/v/nlptextprep.svg
:alt: PyPI-Server
:target: https://pypi.org/project/nlptextprep/
.. image:: https://img.shields.io/conda/vn/conda-forge/nlptextprep.svg
:alt: Conda-Forge
:target: https://anaconda.org/conda-forge/nlptextprep
.. image:: https://pepy.tech/badge/nlptextprep/month
:alt: Monthly Downloads
:target: https://pepy.tech/project/nlptextprep
.. image:: https://img.shields.io/twitter/url/http/shields.io.svg?style=social&label=Twitter
:alt: Twitter
:target: https://twitter.com/nlptextprep
.. image:: https://img.shields.io/badge/-PyScaffold-005CA0?logo=pyscaffold
:alt: Project generated with PyScaffold
:target: https://pyscaffold.org/
|
===========
nlptextprep
One Step Python Package to preprocess text data for NLP tasks. This package is designed to clean, transform, and standardize text data, making it an ideal choice for applications in natural language processing, text analysis, and data cleaning.
Installation
.. code-block:: bash
pip install nlptextprep
Usage
.. code-block:: python
from nlptextprep import preprocess_text
text = "This is a sample text containing a #hashtag, 100+ @mention in 70% , (4 - 2)/7 and line breaks in https://botpenguin.com .\nCheck it out!"
cleaned_text = preprocess_text(text)
print(cleaned_text)
.. _pyscaffold-notes:
Note
This project has been set up using PyScaffold 4.6. For details and usage
information on PyScaffold see https://pyscaffold.org/.