Metadata-Version: 2.1
Name: w1-py-parse
Version: 0.6.0
Summary: Parser for Texas RRC W-1 data files
Home-page: UNKNOWN
Author: Marcus Salinas
License: UNKNOWN
Description: # 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 import W1Parser
        
        parser = W1Parser()
        # Parse all schemas (default)
        parser.parse_file("path/to/data.dat")
        
        # Parse specific schemas by name or ID
        # parser.parse_file("path/to/data.dat", schemas=["DAROOT"])
        
        print(parser.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.
        
        ## Publishing to PyPI
        
        To publish this package to PyPI, run the following commands:
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
