{"id":22049671,"url":"https://github.com/mrqadeer/internet_words_remover","last_synced_at":"2026-05-03T13:32:00.562Z","repository":{"id":230273364,"uuid":"777663986","full_name":"mrqadeer/internet_words_remover","owner":"mrqadeer","description":"Python module designed to replace common internet slang and abbreviations with their full forms, enhancing the readability of informal text. It efficiently cleans text data from chats, social media, and online communication. The module also supports tokenization and integrates seamlessly with pandas for batch processing of text in DataFrames.","archived":false,"fork":false,"pushed_at":"2024-06-25T19:40:45.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-28T21:16:51.863Z","etag":null,"topics":["pandas","python3","text-preprocessing"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/internet-words-remover/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrqadeer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-26T09:32:46.000Z","updated_at":"2024-08-17T20:25:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"1fc2c9a1-2da7-4cc6-8fa1-fa23265b8cc2","html_url":"https://github.com/mrqadeer/internet_words_remover","commit_stats":null,"previous_names":["mrqadeer/internet_words_remover"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrqadeer%2Finternet_words_remover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrqadeer%2Finternet_words_remover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrqadeer%2Finternet_words_remover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrqadeer%2Finternet_words_remover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrqadeer","download_url":"https://codeload.github.com/mrqadeer/internet_words_remover/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245119590,"owners_count":20563763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pandas","python3","text-preprocessing"],"created_at":"2024-11-30T14:16:00.866Z","updated_at":"2026-05-03T13:31:55.521Z","avatar_url":"https://github.com/mrqadeer.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 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) \u003cbr\u003e\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrqadeer%2Finternet_words_remover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrqadeer%2Finternet_words_remover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrqadeer%2Finternet_words_remover/lists"}