Reverse parsing edi 835 file (FROM EXCEL TO EDI 835 file )

Are there any python Packages to reverse parse an edi 835 file i.e, converting an excel data ( parsed edi835 file to an excel sheet) to an edi835 file.

Expecting a python Package that can convert excel sheet or a dataframe back to edi835 file.

Upvotes: 0

Views: 677

Answers (1)

Zack Kanter
Zack Kanter

Reputation: 866

I haven't seen a Python library that converts an Excel file to EDI directly – you may consider looking for a Python library that converts Excel to JSON (e.g. Dataknead, assuming that by Excel you mean CSV), and then another library that does JSON to EDI. I'm not aware of any Python libraries that do the latter – if you're open using a hosted service, Stedi's EDI Translate API would work well. There is a free tier.

Upvotes: 0

Related Questions