-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cria função ibge.convert_text_to_uf que recebe um nome de estado e retorna sua UF. #450
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #450 +/- ##
=======================================
Coverage 99.78% 99.78%
=======================================
Files 18 18
Lines 472 476 +4
=======================================
+ Hits 471 475 +4
Misses 1 1 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ajudando o pessoal do brrutils com os PRs.
Aparentmente seu código me parece ok. Algumas poucas modificações acredito que sejam necessárias. Meu principal ponto é se realmente é preciso utilizarr a dependência unidecode
from brutils.data.enums.uf import CODE_TO_UF | ||
from unidecode import unidecode | ||
|
||
from brutils.data.enums.uf import CODE_TO_UF, UF | ||
|
||
|
||
def convert_code_to_uf(code): # type: (str) -> str | None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apesar do brutils não utilizar algo como o mypy
para verificação de tipos de maneira estática, recomendo fortemente utilizar tipagem no código mesmo ao invés de docstrings.
def convert_code_to_uf(code): # type: (str) -> str | None | |
def convert_code_to_uf(code: str) -> str | None: |
@@ -30,3 +32,35 @@ def convert_code_to_uf(code): # type: (str) -> str | None | |||
result = CODE_TO_UF(code).name | |||
|
|||
return result | |||
|
|||
|
|||
def convert_text_to_uf(state_name): # type: (str) -> str | None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def convert_text_to_uf(state_name): # type: (str) -> str | None | |
def convert_text_to_uf(state_name: str) -> str | None: |
None | ||
""" | ||
|
||
federal_units = {unidecode(i.value.upper()): i.name for i in UF} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
É realmente necessário utilizar essa nova dependência para tratar acentos? Ou tem alguma outra coisa que está dando errado e eu não estou percebendo?
Acredito que esse trecho possa ser definido assim:
federal_units= { uf.value.casefold(): uf for uf in UF}
return federal_units.get(state_name.casefold()), None)
Descrição
Esse pull request tem a soluçao para issue #396 que define a criação de uma função ibge.convert_text_to_uf que recebe um nome de estado e retorna sua UF.
Mudanças Propostas
Checklist de Revisão
Comentários Adicionais (opcional)
Issue Relacionada
Closes #396