pydifact
pydifact copied to clipboard
A python EDIFACT library.
EDIFACT syntax versions [3](http://www.stylusstudio.com/edifact/30000/UNB_.htm) and [4](http://www.stylusstudio.com/edifact/40000/UNB_.htm) changed the date/time of preparation header date format from 6 to 8 characters )(i. e. the year is represented as 2 resp. 4 digits)....
I just want to gather a few ideas on how to implement interchange syntax elements like UNB, UNH, UNZ etc.: Messages, Control Header, and other things. There are [syntax implemetation...
WIP for #18 This PR add some basic high level mapping functionality. I've so far purposefully kept it out of the rest of the core, at least for now. I...
Btw: It would be nice if each segment had a reference to the exact input line (byte position start/end) to ease debugging. That might also help handling malformed files. (I...
I saw that the PHP counterpart had [introduced a test for multibyte support](https://github.com/metroplex-systems/edifact/commit/fe0d365e9e2252125d4d1877b1844ca3a85923bd). Pydifact should test that too.
I was trying to serialize an Interchange with custom delimiters property, but it did not seem to have any effect. I was always getting `UNA:+,? '`. Turns out, in `Interchange`...
I kinda struggle with edifact encoding, but here what I came up to : data: ```python # https://blog.sandro-pereira.com/2009/08/15/edifact-encoding-edi-character-set-support/ # https://www.truugo.com/edifact/d09a/cl0001/ # A bit unsure of how 10646-1 maps exactly to...
Hello, I want to work on this project, and the first thing I'd like to do is improve the documentation. Is this OK? I have a question already, and as...
hi first of all, thank you for this library, it is briliant :) I ran into 1 issue, sometimes I get several messages wrapped together into 1 file, so like...
ATM you can specify the syntax_version (1-4) and the syntax (UNOA, UNOB etc) for the parser. That does not really make sense, as the syntax and version are *defined* in...