├── .coveragerc ├── .gitattributes ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── 2to3.changelog ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── RELEASE ├── TODO ├── bin ├── pyx12.conf.rng ├── pyx12.conf.xml.sample └── pyx12.conf.xml.win ├── pyx12.pyproj ├── pyx12.sln ├── pyx12 ├── __init__.py ├── codes.py ├── dataele.py ├── decorators.py ├── errh_xml.py ├── error_997.py ├── error_999.py ├── error_debug.py ├── error_handler.py ├── error_html.py ├── error_item.py ├── error_visitor.py ├── errors.py ├── examples │ ├── __init__.py │ ├── deident834.py │ ├── example834_5010.txt │ ├── generate_spec.py │ ├── multiple_st_loops.txt │ ├── node_iterator.py │ ├── st_context_iterator.py │ └── st_iterator.py ├── map │ ├── 270.4010.X092.A1.xml │ ├── 271.4010.X092.A1.xml │ ├── 276.4010.X093.A1.xml │ ├── 277.4010.X093.A1.xml │ ├── 277.5010.X212.xml │ ├── 277.5010.X214.xml │ ├── 277U.4010.X070.xml │ ├── 278.4010.X094.27.A1.xml │ ├── 278.4010.X094.A1.xml │ ├── 820.4010.X061.A1.xml │ ├── 820.5010.X218.v2.xml │ ├── 820.5010.X218.xml │ ├── 830.4010.PS.xml │ ├── 834.4010.X095.A1.xml │ ├── 834.5010.X220.A1.v2.xml │ ├── 834.5010.X220.A1.xml │ ├── 835.4010.X091.A1.xml │ ├── 835.5010.X221.A1.v2.xml │ ├── 835.5010.X221.A1.xml │ ├── 837.4010.X096.A1.xml │ ├── 837.4010.X097.A1.xml │ ├── 837.4010.X098.A1.xml │ ├── 837.5010.X222.A1.xml │ ├── 837Q3.I.5010.X223.A1.v2.xml │ ├── 837Q3.I.5010.X223.A1.xml │ ├── 841.4010.XXXC.xml │ ├── 997.4010.xml │ ├── 999.5010.xml │ ├── 999.5010X231.A1.xml │ ├── Makefile │ ├── README │ ├── README.md │ ├── TODO │ ├── codes.rng │ ├── codes.xml │ ├── codes.xsd │ ├── codes.xsl │ ├── comp_test.xml │ ├── dataele.rng │ ├── dataele.xml │ ├── dataele.xsd │ ├── dataele.xsl │ ├── dump.py │ ├── loop.xsl │ ├── loop_only.xsl │ ├── map.v2.xsd │ ├── map.xsd │ ├── map_seg.xsl │ ├── map_sum.xsl │ ├── maps.xml │ ├── maps.xsd │ ├── ord.py │ ├── process │ │ ├── 837_2000C_N.xsl │ │ ├── Makefile │ │ ├── cmt.xsl │ │ ├── loop.xsl │ │ ├── loop_id.xsl │ │ ├── loop_type.xsl │ │ ├── loops only.xsl │ │ ├── ord.xsl │ │ ├── rmtypes.xsl │ │ ├── seq1.xsl │ │ └── toattrib.xsl │ ├── x12.control.00401.xml │ ├── x12.control.00501.xml │ └── x12simple.dtd ├── map_if.py ├── map_index.py ├── map_override.py ├── map_walker.py ├── nodeCounter.py ├── params.py ├── path.py ├── rawx12file.py ├── scripts │ ├── __init__.py │ ├── x12html.py │ ├── x12info.py │ ├── x12norm.py │ ├── x12valid.py │ ├── x12xml.py │ └── xmlx12.py ├── segment.py ├── syntax.py ├── test │ ├── .gitignore │ ├── __init__.py │ ├── test_codes.py │ ├── test_dataele.py │ ├── test_map_if.py │ ├── test_map_if_load.py │ ├── test_map_index.py │ ├── test_map_unique.py │ ├── test_map_walker.py │ ├── test_params.py │ ├── test_path.py │ ├── test_rawx12file.py │ ├── test_segment.py │ ├── test_syntax.py │ ├── test_validation.py │ ├── test_x12context.py │ ├── test_x12file.py │ ├── test_x12n_document.py │ ├── test_xmlwriter.py │ ├── test_xmlx12_simple.py │ └── x12testdata.py ├── tests │ ├── 834_ls_le_ls.txt │ ├── 834_lui_id_5010.999.txt │ ├── 835_mult_loops.txt │ └── nodeCounter.py ├── validation.py ├── version.py ├── x12context.py ├── x12file.py ├── x12metadata.py ├── x12n_document.py ├── x12xml.py ├── x12xml_simple.py ├── xmlwriter.py └── xmlx12_simple.py ├── requirements.dev.txt ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/.gitignore -------------------------------------------------------------------------------- /2to3.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/2to3.changelog -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/RELEASE -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/TODO -------------------------------------------------------------------------------- /bin/pyx12.conf.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/bin/pyx12.conf.rng -------------------------------------------------------------------------------- /bin/pyx12.conf.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/bin/pyx12.conf.xml.sample -------------------------------------------------------------------------------- /bin/pyx12.conf.xml.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/bin/pyx12.conf.xml.win -------------------------------------------------------------------------------- /pyx12.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12.pyproj -------------------------------------------------------------------------------- /pyx12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12.sln -------------------------------------------------------------------------------- /pyx12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/__init__.py -------------------------------------------------------------------------------- /pyx12/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/codes.py -------------------------------------------------------------------------------- /pyx12/dataele.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/dataele.py -------------------------------------------------------------------------------- /pyx12/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/decorators.py -------------------------------------------------------------------------------- /pyx12/errh_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/errh_xml.py -------------------------------------------------------------------------------- /pyx12/error_997.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_997.py -------------------------------------------------------------------------------- /pyx12/error_999.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_999.py -------------------------------------------------------------------------------- /pyx12/error_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_debug.py -------------------------------------------------------------------------------- /pyx12/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_handler.py -------------------------------------------------------------------------------- /pyx12/error_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_html.py -------------------------------------------------------------------------------- /pyx12/error_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_item.py -------------------------------------------------------------------------------- /pyx12/error_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/error_visitor.py -------------------------------------------------------------------------------- /pyx12/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/errors.py -------------------------------------------------------------------------------- /pyx12/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyx12/examples/deident834.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/deident834.py -------------------------------------------------------------------------------- /pyx12/examples/example834_5010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/example834_5010.txt -------------------------------------------------------------------------------- /pyx12/examples/generate_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/generate_spec.py -------------------------------------------------------------------------------- /pyx12/examples/multiple_st_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/multiple_st_loops.txt -------------------------------------------------------------------------------- /pyx12/examples/node_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/node_iterator.py -------------------------------------------------------------------------------- /pyx12/examples/st_context_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/st_context_iterator.py -------------------------------------------------------------------------------- /pyx12/examples/st_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/examples/st_iterator.py -------------------------------------------------------------------------------- /pyx12/map/270.4010.X092.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/270.4010.X092.A1.xml -------------------------------------------------------------------------------- /pyx12/map/271.4010.X092.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/271.4010.X092.A1.xml -------------------------------------------------------------------------------- /pyx12/map/276.4010.X093.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/276.4010.X093.A1.xml -------------------------------------------------------------------------------- /pyx12/map/277.4010.X093.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/277.4010.X093.A1.xml -------------------------------------------------------------------------------- /pyx12/map/277.5010.X212.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/277.5010.X212.xml -------------------------------------------------------------------------------- /pyx12/map/277.5010.X214.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/277.5010.X214.xml -------------------------------------------------------------------------------- /pyx12/map/277U.4010.X070.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/277U.4010.X070.xml -------------------------------------------------------------------------------- /pyx12/map/278.4010.X094.27.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/278.4010.X094.27.A1.xml -------------------------------------------------------------------------------- /pyx12/map/278.4010.X094.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/278.4010.X094.A1.xml -------------------------------------------------------------------------------- /pyx12/map/820.4010.X061.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/820.4010.X061.A1.xml -------------------------------------------------------------------------------- /pyx12/map/820.5010.X218.v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/820.5010.X218.v2.xml -------------------------------------------------------------------------------- /pyx12/map/820.5010.X218.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/820.5010.X218.xml -------------------------------------------------------------------------------- /pyx12/map/830.4010.PS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/830.4010.PS.xml -------------------------------------------------------------------------------- /pyx12/map/834.4010.X095.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/834.4010.X095.A1.xml -------------------------------------------------------------------------------- /pyx12/map/834.5010.X220.A1.v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/834.5010.X220.A1.v2.xml -------------------------------------------------------------------------------- /pyx12/map/834.5010.X220.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/834.5010.X220.A1.xml -------------------------------------------------------------------------------- /pyx12/map/835.4010.X091.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/835.4010.X091.A1.xml -------------------------------------------------------------------------------- /pyx12/map/835.5010.X221.A1.v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/835.5010.X221.A1.v2.xml -------------------------------------------------------------------------------- /pyx12/map/835.5010.X221.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/835.5010.X221.A1.xml -------------------------------------------------------------------------------- /pyx12/map/837.4010.X096.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837.4010.X096.A1.xml -------------------------------------------------------------------------------- /pyx12/map/837.4010.X097.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837.4010.X097.A1.xml -------------------------------------------------------------------------------- /pyx12/map/837.4010.X098.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837.4010.X098.A1.xml -------------------------------------------------------------------------------- /pyx12/map/837.5010.X222.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837.5010.X222.A1.xml -------------------------------------------------------------------------------- /pyx12/map/837Q3.I.5010.X223.A1.v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837Q3.I.5010.X223.A1.v2.xml -------------------------------------------------------------------------------- /pyx12/map/837Q3.I.5010.X223.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/837Q3.I.5010.X223.A1.xml -------------------------------------------------------------------------------- /pyx12/map/841.4010.XXXC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/841.4010.XXXC.xml -------------------------------------------------------------------------------- /pyx12/map/997.4010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/997.4010.xml -------------------------------------------------------------------------------- /pyx12/map/999.5010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/999.5010.xml -------------------------------------------------------------------------------- /pyx12/map/999.5010X231.A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/999.5010X231.A1.xml -------------------------------------------------------------------------------- /pyx12/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/Makefile -------------------------------------------------------------------------------- /pyx12/map/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/README -------------------------------------------------------------------------------- /pyx12/map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/README.md -------------------------------------------------------------------------------- /pyx12/map/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/TODO -------------------------------------------------------------------------------- /pyx12/map/codes.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/codes.rng -------------------------------------------------------------------------------- /pyx12/map/codes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/codes.xml -------------------------------------------------------------------------------- /pyx12/map/codes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/codes.xsd -------------------------------------------------------------------------------- /pyx12/map/codes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/codes.xsl -------------------------------------------------------------------------------- /pyx12/map/comp_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/comp_test.xml -------------------------------------------------------------------------------- /pyx12/map/dataele.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/dataele.rng -------------------------------------------------------------------------------- /pyx12/map/dataele.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/dataele.xml -------------------------------------------------------------------------------- /pyx12/map/dataele.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/dataele.xsd -------------------------------------------------------------------------------- /pyx12/map/dataele.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/dataele.xsl -------------------------------------------------------------------------------- /pyx12/map/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/dump.py -------------------------------------------------------------------------------- /pyx12/map/loop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/loop.xsl -------------------------------------------------------------------------------- /pyx12/map/loop_only.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/loop_only.xsl -------------------------------------------------------------------------------- /pyx12/map/map.v2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/map.v2.xsd -------------------------------------------------------------------------------- /pyx12/map/map.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/map.xsd -------------------------------------------------------------------------------- /pyx12/map/map_seg.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/map_seg.xsl -------------------------------------------------------------------------------- /pyx12/map/map_sum.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/map_sum.xsl -------------------------------------------------------------------------------- /pyx12/map/maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/maps.xml -------------------------------------------------------------------------------- /pyx12/map/maps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/maps.xsd -------------------------------------------------------------------------------- /pyx12/map/ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/ord.py -------------------------------------------------------------------------------- /pyx12/map/process/837_2000C_N.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/837_2000C_N.xsl -------------------------------------------------------------------------------- /pyx12/map/process/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/Makefile -------------------------------------------------------------------------------- /pyx12/map/process/cmt.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/cmt.xsl -------------------------------------------------------------------------------- /pyx12/map/process/loop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/loop.xsl -------------------------------------------------------------------------------- /pyx12/map/process/loop_id.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/loop_id.xsl -------------------------------------------------------------------------------- /pyx12/map/process/loop_type.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/loop_type.xsl -------------------------------------------------------------------------------- /pyx12/map/process/loops only.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/loops only.xsl -------------------------------------------------------------------------------- /pyx12/map/process/ord.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/ord.xsl -------------------------------------------------------------------------------- /pyx12/map/process/rmtypes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/rmtypes.xsl -------------------------------------------------------------------------------- /pyx12/map/process/seq1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/seq1.xsl -------------------------------------------------------------------------------- /pyx12/map/process/toattrib.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/process/toattrib.xsl -------------------------------------------------------------------------------- /pyx12/map/x12.control.00401.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/x12.control.00401.xml -------------------------------------------------------------------------------- /pyx12/map/x12.control.00501.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/x12.control.00501.xml -------------------------------------------------------------------------------- /pyx12/map/x12simple.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map/x12simple.dtd -------------------------------------------------------------------------------- /pyx12/map_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map_if.py -------------------------------------------------------------------------------- /pyx12/map_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map_index.py -------------------------------------------------------------------------------- /pyx12/map_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map_override.py -------------------------------------------------------------------------------- /pyx12/map_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/map_walker.py -------------------------------------------------------------------------------- /pyx12/nodeCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/nodeCounter.py -------------------------------------------------------------------------------- /pyx12/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/params.py -------------------------------------------------------------------------------- /pyx12/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/path.py -------------------------------------------------------------------------------- /pyx12/rawx12file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/rawx12file.py -------------------------------------------------------------------------------- /pyx12/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyx12/scripts/x12html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/x12html.py -------------------------------------------------------------------------------- /pyx12/scripts/x12info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/x12info.py -------------------------------------------------------------------------------- /pyx12/scripts/x12norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/x12norm.py -------------------------------------------------------------------------------- /pyx12/scripts/x12valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/x12valid.py -------------------------------------------------------------------------------- /pyx12/scripts/x12xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/x12xml.py -------------------------------------------------------------------------------- /pyx12/scripts/xmlx12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/scripts/xmlx12.py -------------------------------------------------------------------------------- /pyx12/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/segment.py -------------------------------------------------------------------------------- /pyx12/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/syntax.py -------------------------------------------------------------------------------- /pyx12/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | files/ 3 | -------------------------------------------------------------------------------- /pyx12/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyx12/test/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_codes.py -------------------------------------------------------------------------------- /pyx12/test/test_dataele.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_dataele.py -------------------------------------------------------------------------------- /pyx12/test/test_map_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_map_if.py -------------------------------------------------------------------------------- /pyx12/test/test_map_if_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_map_if_load.py -------------------------------------------------------------------------------- /pyx12/test/test_map_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_map_index.py -------------------------------------------------------------------------------- /pyx12/test/test_map_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_map_unique.py -------------------------------------------------------------------------------- /pyx12/test/test_map_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_map_walker.py -------------------------------------------------------------------------------- /pyx12/test/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_params.py -------------------------------------------------------------------------------- /pyx12/test/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_path.py -------------------------------------------------------------------------------- /pyx12/test/test_rawx12file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_rawx12file.py -------------------------------------------------------------------------------- /pyx12/test/test_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_segment.py -------------------------------------------------------------------------------- /pyx12/test/test_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_syntax.py -------------------------------------------------------------------------------- /pyx12/test/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_validation.py -------------------------------------------------------------------------------- /pyx12/test/test_x12context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_x12context.py -------------------------------------------------------------------------------- /pyx12/test/test_x12file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_x12file.py -------------------------------------------------------------------------------- /pyx12/test/test_x12n_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_x12n_document.py -------------------------------------------------------------------------------- /pyx12/test/test_xmlwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_xmlwriter.py -------------------------------------------------------------------------------- /pyx12/test/test_xmlx12_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/test_xmlx12_simple.py -------------------------------------------------------------------------------- /pyx12/test/x12testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/test/x12testdata.py -------------------------------------------------------------------------------- /pyx12/tests/834_ls_le_ls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/tests/834_ls_le_ls.txt -------------------------------------------------------------------------------- /pyx12/tests/834_lui_id_5010.999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/tests/834_lui_id_5010.999.txt -------------------------------------------------------------------------------- /pyx12/tests/835_mult_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/tests/835_mult_loops.txt -------------------------------------------------------------------------------- /pyx12/tests/nodeCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/tests/nodeCounter.py -------------------------------------------------------------------------------- /pyx12/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/validation.py -------------------------------------------------------------------------------- /pyx12/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.0.0rc3" 2 | -------------------------------------------------------------------------------- /pyx12/x12context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12context.py -------------------------------------------------------------------------------- /pyx12/x12file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12file.py -------------------------------------------------------------------------------- /pyx12/x12metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12metadata.py -------------------------------------------------------------------------------- /pyx12/x12n_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12n_document.py -------------------------------------------------------------------------------- /pyx12/x12xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12xml.py -------------------------------------------------------------------------------- /pyx12/x12xml_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/x12xml_simple.py -------------------------------------------------------------------------------- /pyx12/xmlwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/xmlwriter.py -------------------------------------------------------------------------------- /pyx12/xmlx12_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/pyx12/xmlx12_simple.py -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azoner/pyx12/HEAD/setup.py --------------------------------------------------------------------------------