https://github.com/devlucaslourenco/recofunicode
RecofUnicode é responsável por tratar o argumento passado e remover acentuações
https://github.com/devlucaslourenco/recofunicode
acent-characters characters unicode unicode-characters unicode-converter
Last synced: about 1 month ago
JSON representation
RecofUnicode é responsável por tratar o argumento passado e remover acentuações
- Host: GitHub
- URL: https://github.com/devlucaslourenco/recofunicode
- Owner: DevLucasLourenco
- Created: 2023-07-06T20:21:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T18:21:20.000Z (almost 3 years ago)
- Last Synced: 2025-03-04T01:30:20.645Z (over 1 year ago)
- Topics: acent-characters, characters, unicode, unicode-characters, unicode-converter
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RecofUnicode
O RecofUnicode é uma classe em Python que permite remover acentos e substituir o caractere "ç" por "c" em uma string.
Para utilização, Baixe ou clone este repositório.
Uso:
- Importe a classe RecofUnicode em seu código Python.
- Instancie um objeto da classe RecofUnicode, passando uma string como argumento: `texto = RecofUnicode('áãàñç')`.
- O resultado será a string adaptada, sem acentos e com o "ç" substituído por "c".
## Exemplo
```python
texto = RecofUnicode('áãàñç')
print(texto)
>>> "aaanc"
```