# Internet Words Remover
Internet Words Remover is a Python module that replaces common internet slang and abbreviations with their full forms. It can be used to clean text data containing informal language commonly used in chats, social media, and online communication.
## Installation
You can install Internet Words Remover using pip:
```bash
pip install internet_words_remover
```
## How to Use
```python
from internet_words_remover import words_remover
text="OMG! It works! Osm"
cleaned=words_remover(text)
print(cleaned)
```
**Output**
```
oh my god It works! Awesome
```
### Tokenization
If you are intrested to get tokens of your give string then use follow code.
```python
from internet_words_remover import words_remover
text="OMG! It works! Osm"
cleaned=words_remover(text,is_token=True)
print(cleaned)
```
**Output**
```
['oh', 'my', 'god', 'It', 'works!', 'Awesome']
```
### Bonus
**It also works on pandas series**
```python
from internet_words_remover import words_remover
import pandas as pd
data={
'Name':['Qadeer'],
'Message':['Hi gm TIL something new. PTL']
}
df=pd.DataFrame(data)
df['Message'].apply(words_remover,is_token=True)
```
**Output**
```
['Hi', 'good', 'morning', 'today', 'I', 'learned', 'something', 'new.', 'praise', 'the', 'lord']
```
#### Catch me on
[Github](https://github.com/mrqadeer) <br>
[LinkedIn](https://www.linkedin.com/in/mr-qadeer-3499a4205/)
#### Thanks
##### Keep Learning and Exploring!
##### License: [MIT](https://mit-license.org/)
Raw data
{
"_id": null,
"home_page": null,
"name": "internet-words-remover",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "python, internet words, chatting words, words remover, nlp, textual data",
"author": "Qadeer Ahmad",
"author_email": "<mrqadeer1231122@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/d6/1c/b0a691183fa2aafd55dd6ff12f95b13f14f98d5f06142736fb71fc6e0039/internet_words_remover-3.1.3.tar.gz",
"platform": null,
"description": "\n# Internet Words Remover\n\nInternet Words Remover is a Python module that replaces common internet slang and abbreviations with their full forms. It can be used to clean text data containing informal language commonly used in chats, social media, and online communication.\n\n## Installation\n\nYou can install Internet Words Remover using pip:\n\n```bash\npip install internet_words_remover\n```\n\n## How to Use\n\n```python\nfrom internet_words_remover import words_remover\ntext=\"OMG! It works! Osm\"\ncleaned=words_remover(text)\nprint(cleaned)\n```\n**Output**\n```\noh my god It works! Awesome\n```\n### Tokenization\nIf you are intrested to get tokens of your give string then use follow code.\n\n```python\nfrom internet_words_remover import words_remover\ntext=\"OMG! It works! Osm\"\ncleaned=words_remover(text,is_token=True)\nprint(cleaned)\n```\n**Output**\n```\n['oh', 'my', 'god', 'It', 'works!', 'Awesome']\n```\n\n### Bonus\n**It also works on pandas series**\n```python\nfrom internet_words_remover import words_remover\nimport pandas as pd \ndata={\n 'Name':['Qadeer'],\n 'Message':['Hi gm TIL something new. PTL']\n}\ndf=pd.DataFrame(data)\ndf['Message'].apply(words_remover,is_token=True)\n\n```\n**Output**\n```\n['Hi', 'good', 'morning', 'today', 'I', 'learned', 'something', 'new.', 'praise', 'the', 'lord']\n```\n\n#### Catch me on\n[Github](https://github.com/mrqadeer) <br>\n[LinkedIn](https://www.linkedin.com/in/mr-qadeer-3499a4205/)\n#### Thanks\n##### Keep Learning and Exploring!\n##### License: [MIT](https://mit-license.org/)\n",
"bugtrack_url": null,
"license": null,
"summary": "This module is helful for removing daily use chatting and business words from any string.",
"version": "3.1.3",
"project_urls": null,
"split_keywords": [
"python",
" internet words",
" chatting words",
" words remover",
" nlp",
" textual data"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d4886b8bdfe023d08268651ba1db6262d670346609f268f1b2bf3fd37e64cca6",
"md5": "aa01165c3c9ac082b90bc6d0a1ab988e",
"sha256": "651f8b4bf999143db49ce12364a443309a74e707bc53c12b9146971e7f92d694"
},
"downloads": -1,
"filename": "internet_words_remover-3.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "aa01165c3c9ac082b90bc6d0a1ab988e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 9066,
"upload_time": "2024-06-21T16:12:39",
"upload_time_iso_8601": "2024-06-21T16:12:39.585102Z",
"url": "https://files.pythonhosted.org/packages/d4/88/6b8bdfe023d08268651ba1db6262d670346609f268f1b2bf3fd37e64cca6/internet_words_remover-3.1.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d61cb0a691183fa2aafd55dd6ff12f95b13f14f98d5f06142736fb71fc6e0039",
"md5": "ca6925955f3cd9214e5b5734f6a4f716",
"sha256": "bbbf66a8d0761787d37d11959d4f434a987a9e4eec7d7b699fdf8ed2a8ebad18"
},
"downloads": -1,
"filename": "internet_words_remover-3.1.3.tar.gz",
"has_sig": false,
"md5_digest": "ca6925955f3cd9214e5b5734f6a4f716",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7938,
"upload_time": "2024-06-21T16:12:41",
"upload_time_iso_8601": "2024-06-21T16:12:41.453820Z",
"url": "https://files.pythonhosted.org/packages/d6/1c/b0a691183fa2aafd55dd6ff12f95b13f14f98d5f06142736fb71fc6e0039/internet_words_remover-3.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-21 16:12:41",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "internet-words-remover"
}