Metadata-Version: 2.1
Name: w1-py-parse
Version: 0.1.1
Summary: Parser for Texas RRC W-1 data files
Home-page: UNKNOWN
Author: Marcus Salinas
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# w1_py_parse

A Python parser for Texas RRC W-1 data files.

## Description

This tool allows for parsing fixed-width data files from the Texas Railroad Commission, specifically handling schema format 01.

## Installation

```bash
pip install w1_py_parse
```

## Usage

```python
from w1_py_parse.parser import RRCParser

parser = RRCParser()
result = parser.parse("path/to/data.dat")
print(result.header)
print(result.records)
```

## Credits

**Made almost entirely with Google DeepMind's Gemini 3 Pro.**

This project serves as a demonstration of the capabilities of advanced AI in software development.


