-
Notifications
You must be signed in to change notification settings - Fork 38
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
download xml #20
Comments
Oi Marcilene, |
Oi Marcelo, o Thiago fez uma atualização na lib, e adicionou um exemplo de
utilização, acho q vai resolver o problema.
Abraços,
Em 10 de dez de 2016 1:09 PM, "Marcelo Kumruyan" <[email protected]>
escreveu:
Oi Marcilene,
no processador_nfe.py em download_nfe_xml não tem referencia à versão 3.10,
somente à versão 2.00.
Voce teria alguma atualização para este caso?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#20 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAbadhN1gwA1pw1G3zmelDIXagg-4d3_ks5rGsCggaJpZM4LDw-b>
.
|
Marcelo, Já instalei a a lib lxml no python, tenho que ter a dll desta no windows? Desde já agradeço a ajuda. |
Oi Danhcarvalho |
Oi Marcilene,
Estou tentando fazr download de um xml e não estou conseguindo
Veja o codigo:
obs: Verifiquei que sua lib não está preparada para oa versão 3.10 então tentei também a 2.00 mas também deu erro.
#!/usr/bin/env python
from nfe.nf_e import *
Instanciando classe nf_e
instancia = nf_e()
Parametros que tenho que enviar para chamada webserver
arquivo = 'certificado.pfx' # Nome do arquivo do certificado
senha = 'senha_pfx' # Senha do certificado
versao = "3.10" # Versao de NFe
estado = 'SP' # Estado que estou
ambiente = 2 # 1 = producao 2 = homologacao
contingencia = False # habilita ou nao a contingencia
cnpj = '07888632002207'
chave = '35160418810799000147550010000007541556928060'
Processos a serem realizados no webserver
Extraindo certificado
certificado = instancia.extrair_certificado_a1(file(arquivo, 'rb').read(),senha)
cert = certificado['cert'] # string do certificado
key = certificado['key'] # string da chave
resp = instancia.download_xml(cnpj,chave,cert,key,versao,ambiente,estado,contingencia)
print resp
The text was updated successfully, but these errors were encountered: