Skip to content

Commit a86b003

Browse files
author
Don Johnson
committedJul 30, 2024
version bump
1 parent fe47555 commit a86b003

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed
 

‎README.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# X12 EDI Tools
2+
3+
![X12 EDI Tools Logo](logo.png)
4+
![Python](https://img.shields.io/badge/Python-3.9+-blue?logo=python)
5+
6+
7+
8+
A comprehensive Python library for working with X12 EDI (Electronic Data Interchange) files, commonly used in healthcare for claims processing, eligibility verification, and other administrative transactions.
9+
10+
## Installation
11+
12+
Install the X12 EDI Tools library using pip:
13+
14+
```bash
15+
pip install x12-edi-tools
16+
```
17+
118
## Key Components
219

320
### X12Parser
@@ -113,3 +130,13 @@ logger = X12Logger("path/to/log/directory")
113130
logger.log_parse("837", "path/to/837_file.edi", parse_result)
114131
logger.log_generate("835", "path/to/835_file.edi", generation_data)
115132
```
133+
134+
## Contributing
135+
136+
Contributions are welcome! Please feel free to submit a Pull Request.
137+
138+
## Contact
139+
140+
Don Johnson - dj@codetestcode.io
141+
142+
Project Link: [https://github.com/donjohnson/x12-edi-tools](https://github.com/donjohnson/x12-edi-tools)

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = x12-edi-tools
3-
version = 0.1.1
3+
version = 0.1.2
44
author = Don Johnson
55
author_email = dj@codetestcode.io
66
description = A comprehensive set of tools for working with X12 EDI files

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="x12-edi-tools",
8-
version="0.1.1",
8+
version="0.1.2",
99
author="Don Johnson",
1010
author_email="dj@codetestcode.io",
1111
description="A comprehensive set of tools for working with X12 EDI files",

0 commit comments

Comments
 (0)
Please sign in to comment.