edi-835-parser icon indicating copy to clipboard operation
edi-835-parser copied to clipboard

A simple EDI 835 file format parser.

Results 19 edi-835-parser issues
Sort by recently updated
recently updated
newest added

~/miniconda3/envs/835_parser/lib/python3.9/site-packages/edi_835_parser/transaction_set/transaction_set.py in to_dataframe(self) 45 datum = TransactionSet.serialize_service( 46 self.financial_information, ---> 47 self.payer, 48 claim, 49 service ~/miniconda3/envs/835_parser/lib/python3.9/site-packages/edi_835_parser/transaction_set/transaction_set.py in payer(self) 34 def payer(self) -> OrganizationLoop: 35 payer = [o for o...

This PR implements a simple argparse based CLI to support writing input EDI files to CSV. Changes in this PR include: - consolidating conftest fixtures pertaining to test and output...

Hello, First of all, thank you very much for this library! I would like to add a simple CLI wrapper (using argparse) to the library to support generating CSV files...

As far as I could tell this code doesn't use any 3.9-only features, so this PR edits `setup.py` to support 3.8 (which is still supported until 2024). This includes the...

This PR will automatically run existing unit tests on new PRs, ensuring the main branch stays healthy. It's free for public repos!

Add parsing for additional fields in the claim segment (based on #8): - patient_responsibility_amount - claim_filing_indicator_code - payer_claim_control_number - facility_type_code - claim_frequency_code - drg_code

All 835's come in with an int here, and even the default value you have is an int... however, Cigna, in their infinite wisdom, is using floating point as a...

Blue cross and Aetna sometimes use .RMT extension. At some point it might be cleaner to switch to pathlib and use `file.suffix in ['.txt','.835','.RMT']`

When processing 2 files appended, parser does not close and start to new ISA* this may be easy to add. Fails assuming 2 different payers.

bug
enhancement