-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
Contador de dias uteis junto ao de dias corridos #67
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ ad.txt | |
__pycache__ | ||
bot.log* | ||
*.pyc | ||
*.lock | ||
*.lock | ||
.idea | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ | |
from misc import check_type | ||
import apicorreios as correios | ||
import apitrackingmore as trackingmore | ||
from numpy import busday_count | ||
rougeth marked this conversation as resolved.
Show resolved
Hide resolved
|
||
import holidays | ||
|
||
|
||
def check_update(code, max_retries=3): | ||
# print('check_update') | ||
|
@@ -41,14 +44,23 @@ def check_update(code, max_retries=3): | |
ano1 = int(evento['data'].split('/')[2]) | ||
data1 = date(ano1, mes1, dia1) | ||
delta = data1 - data0 | ||
dias_uteis = busday_count(data0, data1) | ||
todos_feriados = holidays.BR() | ||
# feriados TODO: adicionar feriados estaduais | ||
feriados_entre_datas = todos_feriados[data0:data1] | ||
feriados_uteis = 0 | ||
for f in feriados_entre_datas: | ||
rougeth marked this conversation as resolved.
Show resolved
Hide resolved
|
||
feriados_uteis += 1 if f.weekday() < 5 else 0 | ||
dias_uteis -= feriados_uteis | ||
except Exception: | ||
delta = 0 | ||
dias_uteis = 0 | ||
pass | ||
data = evento['data'] + ' ' + evento['hora'] | ||
data = f'{evento["data"]} {evento["hora"]}' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. O Rastreiobot hoje roda no Python 3.4, f-strings não vai funcionar :/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Infelizmente não sabia que estava rodando na 3.4, mas este é um ajuste simples de se fazer There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
3.5.2 |
||
if delta.days == 1: | ||
data = data + ' (' + str(delta.days) + ' dia)' | ||
data += f' ({delta.days} dia - {dias_uteis} útil)' | ||
elif delta.days > 1: | ||
data = data + ' (' + str(delta.days) + ' dias)' | ||
data += f' ({delta.days} dias - {dias_uteis} úteis)' | ||
try: | ||
local = evento['unidade']['local'] | ||
except Exception: | ||
|
@@ -57,10 +69,10 @@ def check_update(code, max_retries=3): | |
if 'endereço indicado' in evento['descricao']: | ||
try: | ||
situacao = ( | ||
situacao + '\n</b>' + | ||
evento['unidade']['endereco']['numero'] + ' ' + | ||
evento['unidade']['endereco']['logradouro'] + '\n' + | ||
evento['unidade']['endereco']['bairro'] + '<b>' | ||
situacao + '\n</b>' + | ||
evento['unidade']['endereco']['numero'] + ' ' + | ||
evento['unidade']['endereco']['logradouro'] + '\n' + | ||
evento['unidade']['endereco']['bairro'] + '<b>' | ||
) | ||
except Exception: | ||
pass | ||
|
@@ -73,8 +85,8 @@ def check_update(code, max_retries=3): | |
mensagem = mensagem + '\nLocal: ' + local.strip().title() | ||
if situacao: | ||
mensagem = ( | ||
mensagem + '\nSituação: <b>' + | ||
situacao.strip() + '</b>' | ||
mensagem + '\nSituação: <b>' + | ||
situacao.strip() + '</b>' | ||
) | ||
if 'objeto entregue ao' in situacao.lower(): | ||
mensagem = mensagem + ' ' + str(u'\U0001F381') | ||
|
@@ -96,20 +108,20 @@ def check_update(code, max_retries=3): | |
mensagem = mensagem + ' ' + str(u'\U0001F4B8') | ||
elif 'aduaneira finalizada' in situacao.lower(): | ||
mensagem = (mensagem + '\n<i>Acesse o ambiente </i>' + | ||
'<a href="https://apps.correios.com.br/cas/login?service=https%3A%2F%2Fapps.correios.com.br%2Fportalimportador%2Fpages%2FpesquisarRemessaImportador%2FpesquisarRemessaImportador.jsf">Minhas Importações</a>') | ||
'<a href="https://apps.correios.com.br/cas/login?service=https%3A%2F%2Fapps.correios.com.br%2Fportalimportador%2Fpages%2FpesquisarRemessaImportador%2FpesquisarRemessaImportador.jsf">Minhas Importações</a>') | ||
elif 'aguardando pagamento' in situacao.lower(): | ||
mensagem = (mensagem + ' ' + str(u'\U0001F52B') + | ||
'\n<i>Links para efetuar pagamentos aos Correios:</i>' + | ||
'\n<a href="https://www2.correios.com.br/sistemas/rastreamento/">Rastreamento</a>' + | ||
'\n<a href="https://apps.correios.com.br/portalimportador/">Portal Importador</a>') | ||
mensagem = (mensagem + ' ' + str(u'\U0001F52B') + | ||
'\n<i>Links para efetuar pagamentos aos Correios:</i>' + | ||
'\n<a href="https://www2.correios.com.br/sistemas/rastreamento/">Rastreamento</a>' + | ||
'\n<a href="https://apps.correios.com.br/portalimportador/">Portal Importador</a>') | ||
elif 'liberado sem' in situacao.lower(): | ||
mensagem = mensagem + ' ' + str(u'\U0001F389') | ||
if observacao: | ||
mensagem = mensagem + '\nObservação: ' + observacao.strip().title() | ||
if 'liberado sem' in observacao.lower(): | ||
mensagem = mensagem + ' ' + str(u'\U0001F389') | ||
elif 'pagamento' in observacao.lower(): | ||
mensagem = (mensagem + | ||
'\nhttps://www2.correios.com.br/sistemas/rastreamento/') | ||
mensagem = (mensagem + | ||
'\nhttps://www2.correios.com.br/sistemas/rastreamento/') | ||
stats.append(mensagem) | ||
return stats |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ pyTelegramBotAPI==3.* | |
pytest==5.* | ||
requests==2.* | ||
sentry-sdk==0.* | ||
holidays==0.* |
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.
Adiciona um
\n
aqui, pls.