Library for the issuance of electronic fiscal notes

Asked

Viewed 779 times

1

I’m in need of a Python library for the issuance of electronic invoices... Does anyone there have any experience? Would you know to tell me if I need to acquire any government certificates for the issuance of these bills?

  • Check out the Aruma...

1 answer

1

You can use the Pysped

### Exemplo ###

from pysped.nfe.manual_401 import *

n = NFe_200()

# Com este método você carrega o xml dentro do Objeto NFe_200 e a partir disto você pode acessar qualquer elemento.
n.set_xml("<chaveNota>.xml")

# Por exemplo assim você acessa o primeiro detalhamento, (det é uma lista) e dentro do detalhamento o produto
n.infNFe.det[0].prod

Take a look in that system to get a reference on how to issue your nf-e and work with other features you need.

On the government’s permission, I believe you need at least MEI to issue nf-e.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.