├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── requeriments.txt ├── setup.cfg ├── setup.py ├── sped ├── __init__.py ├── arquivos.py ├── blocos.py ├── campos.py ├── ecd │ ├── __init__.py │ ├── arquivos.py │ ├── blocos.py │ ├── registros.py │ ├── tabelas.py │ └── tabelas │ │ ├── SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF$1$198 │ │ ├── SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_BACEN$1$199 │ │ ├── SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_SUSEP$1$200 │ │ ├── SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_TSE$1$225 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$13$386 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$6$386 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$4$387 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$6$387 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_C$4$388 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_A$4$395 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$1$396 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$2$396 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$1$397 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$2$397 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$12$389 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$3$389 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P150$3$398 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_A$2$390 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$3$391 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$4$391 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_C$2$392 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$3$393 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$7$393 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_E$2$394 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_A$1$399 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_B$1$400 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_C$1$401 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$2$402 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$3$402 │ │ ├── SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_E$1$403 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_ENTIDADES$2$201 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$194 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$202 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INSTITUICOES$1$203 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_MUNICIPIOS$3$204 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$197 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$205 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$198 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$206 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_QUALIFICACAO$3$207 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$200 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$208 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_SITUACAO$2$209 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$406 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$574 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF$1$210 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$203 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$211 │ │ ├── SPEDCONTABIL_GLOBAL$SPEDECF_NATUREZA_SUBCONTA$2$404 │ │ └── metadados ├── ecf │ ├── __init__.py │ ├── arquivos.py │ ├── blocos.py │ └── registros.py ├── efd │ ├── __init__.py │ ├── icms_ipi │ │ ├── __init__.py │ │ ├── arquivos.py │ │ ├── blocos.py │ │ └── registros.py │ └── pis_cofins │ │ ├── __init__.py │ │ ├── arquivos.py │ │ ├── blocos.py │ │ └── registros.py ├── erros.py ├── escrituracao.py ├── fci │ ├── __init__.py │ ├── arquivos.py │ ├── blocos.py │ └── registros.py ├── lcdpr │ ├── __init__.py │ ├── arquivos.py │ ├── blocos.py │ └── registros.py ├── leiaute.py ├── leiautes │ ├── ecd_2016.json │ ├── ecd_2017.json │ ├── ecf_2016.json │ └── ecf_2017.json └── registros.py └── test ├── __init__.py ├── fci_test.py └── pis_cofins.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/README.md -------------------------------------------------------------------------------- /requeriments.txt: -------------------------------------------------------------------------------- 1 | coveralls==0.5 2 | six==1.9.0 3 | pytest==2.6.4 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/setup.py -------------------------------------------------------------------------------- /sped/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/__init__.py -------------------------------------------------------------------------------- /sped/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/arquivos.py -------------------------------------------------------------------------------- /sped/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/blocos.py -------------------------------------------------------------------------------- /sped/campos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/campos.py -------------------------------------------------------------------------------- /sped/ecd/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/ecd/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/arquivos.py -------------------------------------------------------------------------------- /sped/ecd/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/blocos.py -------------------------------------------------------------------------------- /sped/ecd/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/registros.py -------------------------------------------------------------------------------- /sped/ecd/tabelas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas.py -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF$1$198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF$1$198 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_BACEN$1$199: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_BACEN$1$199 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_SUSEP$1$200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_SUSEP$1$200 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_TSE$1$225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_CONTAS_REFERENCIAIS$SPEDCONTABIL_CONTASREF_TSE$1$225 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$13$386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$13$386 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$6$386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_A$6$386 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$4$387: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$4$387 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$6$387: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_B$6$387 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_C$4$388: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L100_C$4$388 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_A$4$395: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_A$4$395 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$1$396: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$1$396 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$2$396: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_B$2$396 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$1$397: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$1$397 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$2$397: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_L300_C$2$397 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$12$389: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$12$389 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$3$389: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P100$3$389 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P150$3$398: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_P150$3$398 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_A$2$390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_A$2$390 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$3$391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$3$391 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$4$391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_B$4$391 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_C$2$392: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_C$2$392 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$3$393: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$3$393 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$7$393: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_D$7$393 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_E$2$394: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U100_E$2$394 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_A$1$399: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_A$1$399 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_B$1$400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_B$1$400 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_C$1$401: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_C$1$401 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$2$402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$2$402 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$3$402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_D$3$402 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_E$1$403: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_DINAMICO_2014$SPEDECF_DINAMICA_U150_E$1$403 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_ENTIDADES$2$201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_ENTIDADES$2$201 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$194 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INDICADOR_INICIO_PERIODO$2$202 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INSTITUICOES$1$203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_INSTITUICOES$1$203 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_MUNICIPIOS$3$204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_MUNICIPIOS$3$204 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$197: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$197 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_NATUREZA$1$205 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$198 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$206: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_PAISES$1$206 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_QUALIFICACAO$3$207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_QUALIFICACAO$3$207 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$200 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_RELACIONAMENTOS$1$208 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_SITUACAO$2$209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_SITUACAO$2$209 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$406: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$406 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$574: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_TIPO_PLANO_REF$1$574 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF$1$210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF$1$210 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$203 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDCONTABIL_UF_NIRE$1$211 -------------------------------------------------------------------------------- /sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDECF_NATUREZA_SUBCONTA$2$404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/SPEDCONTABIL_GLOBAL$SPEDECF_NATUREZA_SUBCONTA$2$404 -------------------------------------------------------------------------------- /sped/ecd/tabelas/metadados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecd/tabelas/metadados -------------------------------------------------------------------------------- /sped/ecf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/ecf/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecf/arquivos.py -------------------------------------------------------------------------------- /sped/ecf/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecf/blocos.py -------------------------------------------------------------------------------- /sped/ecf/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/ecf/registros.py -------------------------------------------------------------------------------- /sped/efd/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/efd/icms_ipi/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/efd/icms_ipi/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/icms_ipi/arquivos.py -------------------------------------------------------------------------------- /sped/efd/icms_ipi/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/icms_ipi/blocos.py -------------------------------------------------------------------------------- /sped/efd/icms_ipi/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/icms_ipi/registros.py -------------------------------------------------------------------------------- /sped/efd/pis_cofins/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/efd/pis_cofins/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/pis_cofins/arquivos.py -------------------------------------------------------------------------------- /sped/efd/pis_cofins/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/pis_cofins/blocos.py -------------------------------------------------------------------------------- /sped/efd/pis_cofins/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/efd/pis_cofins/registros.py -------------------------------------------------------------------------------- /sped/erros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/erros.py -------------------------------------------------------------------------------- /sped/escrituracao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/escrituracao.py -------------------------------------------------------------------------------- /sped/fci/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/fci/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/fci/arquivos.py -------------------------------------------------------------------------------- /sped/fci/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/fci/blocos.py -------------------------------------------------------------------------------- /sped/fci/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/fci/registros.py -------------------------------------------------------------------------------- /sped/lcdpr/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sped/lcdpr/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/lcdpr/arquivos.py -------------------------------------------------------------------------------- /sped/lcdpr/blocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/lcdpr/blocos.py -------------------------------------------------------------------------------- /sped/lcdpr/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/lcdpr/registros.py -------------------------------------------------------------------------------- /sped/leiaute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/leiaute.py -------------------------------------------------------------------------------- /sped/leiautes/ecd_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/leiautes/ecd_2016.json -------------------------------------------------------------------------------- /sped/leiautes/ecd_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/leiautes/ecd_2017.json -------------------------------------------------------------------------------- /sped/leiautes/ecf_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/leiautes/ecf_2016.json -------------------------------------------------------------------------------- /sped/leiautes/ecf_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/leiautes/ecf_2017.json -------------------------------------------------------------------------------- /sped/registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/sped/registros.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /test/fci_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/test/fci_test.py -------------------------------------------------------------------------------- /test/pis_cofins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sped-br/python-sped/HEAD/test/pis_cofins.py --------------------------------------------------------------------------------