Metadata-Version: 2.1
Name: w1_py_parse
Version: 0.1.2
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()
        parser.parse_file("path/to/data.dat")
        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:
        
        ```bash
        # Clean up previous builds
        rm -rf dist/*
        
        # Build the package
        python3 setup.py sdist bdist_wheel
        
        # Upload to PyPI
        twine upload dist/*
        ```
        
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
