{"id":13592093,"url":"https://github.com/keironstoddart/edi-835-parser","last_synced_at":"2025-04-08T23:30:45.597Z","repository":{"id":39851766,"uuid":"331755715","full_name":"keironstoddart/edi-835-parser","owner":"keironstoddart","description":"A simple EDI 835 file format parser.","archived":false,"fork":false,"pushed_at":"2024-06-03T16:17:37.000Z","size":54,"stargazers_count":80,"open_issues_count":18,"forks_count":40,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-11-01T20:12:13.116Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keironstoddart.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"keironstoddart","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2021-01-21T21:09:38.000Z","updated_at":"2024-09-28T04:02:06.000Z","dependencies_parsed_at":"2024-01-16T22:19:41.048Z","dependency_job_id":"72688495-ef9d-413a-bedb-bd41cb4a94a5","html_url":"https://github.com/keironstoddart/edi-835-parser","commit_stats":{"total_commits":61,"total_committers":3,"mean_commits":"20.333333333333332","dds":0.06557377049180324,"last_synced_commit":"582214ab692f4992c69e5565ab26d0c475569369"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keironstoddart%2Fedi-835-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keironstoddart%2Fedi-835-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keironstoddart%2Fedi-835-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keironstoddart%2Fedi-835-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keironstoddart","download_url":"https://codeload.github.com/keironstoddart/edi-835-parser/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223346534,"owners_count":17130457,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T16:01:05.721Z","updated_at":"2024-11-06T13:30:17.498Z","avatar_url":"https://github.com/keironstoddart.png","language":"Python","funding_links":["https://github.com/sponsors/keironstoddart"],"categories":["Uncategorized","Libraries"],"sub_categories":["Uncategorized","Python"],"readme":"# EDI 835 Parser\n\n[![Python - 3.9.0+](https://img.shields.io/badge/Python-3.9.0%2B-orange)](https://www.python.org/downloads/release/python-390/)\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/keironstoddart/edi-835-parser)\n[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/keironstoddart/edi-835-parser)\n[![Downloads](https://static.pepy.tech/badge/edi-835-parser)](https://pepy.tech/project/edi-835-parser)\n\n### edi-835-parser: a lightweight EDI 835 file parser\n\nThis package provides a simple-to-use Python interface to EDI 835 Health Care Claim Payment and Remittance Advice files.\n\n*This package is made publicly available by [Senscio Systems](https://www.sensciosystems.com/), the company behind the [Ibis Program](https://www.ibisprogram.com/), an industry leading healthcare initiative that helps people take control of their chronic condition management.*\n\n**Please consider taking two minutes to [give feedback](https://og5vg099r1x.typeform.com/to/k49iVBI2).**\n\n### Installation\nBinary installers for the latest released version are at the Python Package Index. Please note that you need to run Python 3.9 or higher to install the edi-835-parser.\n```\npip install edi-835-parser\n```\n\n### Usage\nTo parse an EDI 835 file simply execute the `parse` function.\n```python\nfrom edi_835_parser import parse\n\npath = '~/Desktop/my_edi_file.txt'\ntransaction_set = parse(path)\n```\nThe `parse` function also works on a directory path.\n```python\nfrom edi_835_parser import parse\n\npath = '~/Desktop/my_directory_of_edi_files'\ntransaction_sets = parse(path)\n```\nIn both cases, `parse` returns an instance of the `TransactionSets` class. \nThis is the class you manipulate depending on your needs. \nFor example, say you want to work with the transaction sets data as a `pd.DataFrame`.\n```python\nfrom edi_835_parser import parse\n\npath = '~/Desktop/my_directory_of_edi_files'\ntransaction_sets = parse(path)\n\ndata = transaction_sets.to_dataframe()\n```\nAnd then save that `pd.DataFrame` as a `.csv` file.\n```python\ndata.to_csv('~/Desktop/my_edi_file.csv')\n```\nThe complete set of `TransactionSets` functionality can be found by inspecting the `TransactionSets` \nclass found at `edi_parser/transaction_set/transaction_sets.py`\n\n### Tests\nExample EDI 835 files can be found in `tests/test_edi_835/files`. To run the tests use `pytest`.\n```\npython -m pytest\n```\n\n### Contributing to edi-835-parser\nAll contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.\n\nNot all EDI 835 elements and segments are currently parsable and not all EDI codes are mapped. If you are interested in\ncontributing to edi-835-parser, please feel free to fork the project and/or reach out by emailing edi835parser@gmail.com.\n\n### Acknowledgements\nA special thank you to Github user `gizquier2` for his interest in this project and continued feedback.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeironstoddart%2Fedi-835-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeironstoddart%2Fedi-835-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeironstoddart%2Fedi-835-parser/lists"}