Metadata-Version: 2.1
Name: textformat
Version: 0.0.1
Summary: TextFormat is a Python library for data cleaning.
Home-page: https://github.com/LuferGonn/textformat
Author: Luis Fernando
Author-email: lufergonn@gmail.com
License: MIT License
Project-URL: Bug Tracker, https://github.com/LuferGonn/textformat/issues
Project-URL: Source Code, https://github.com/LuferGonn/textformat
Keywords: Textformat,Data cleaning
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# TextFormat

TextFormat is a Python library for data cleaning.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install textformat.

```bash
pip install textformat
```
or

```bash
pip install -i https://test.pypi.org/simple/ textformat
```

## Usage

```python
from textformat import TextFormat

t = TextFormat()

t.tUrl('ejemplo de https://github.com url') 
# return: ejemplo de  url

t.fReplace('El acento gráfico o tilde es un signo ortográfico') 
# return: El acento grafico o tilde es un signo ortografico

t.fEmoji('Some examples of emojis are 😃, 🧘🏻‍♂️, 🌍, 🍞, 🚗, 📞, 🎉, ♥️, 🍆, and 🏁') 
# return: Some examples of emojis are , , , , , , , ️, , and

t.fTag('ejemplo de #pruebaTag')
# return: ejemplo de prueba tag

t.fFormat('Eejemplo 123de formato {ñ45', 'a-z')
# return: ejemplo de formato

# t.fTweet('tweet') --> Sin # o @ al inicio
# t.format('tweet') --> Todas las funciones anteriores
```

## License
[MIT](https://choosealicense.com/licenses/mit/)


