Metadata-Version: 2.4
Name: proto-models-py
Version: 1.1.0
Summary: Generated Python protobuf models for trading and financial data
Author-email: Your Name <your.email@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/protos
Project-URL: Repository, https://github.com/yourusername/protos
Project-URL: Issues, https://github.com/yourusername/protos/issues
Keywords: protobuf,trading,finance,models
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: protobuf>=4.21.0

# Proto Models Python Package

Generated Python protobuf models for trading and financial data.

## Installation

```bash
pip install proto-models-py
```

## Usage

```python
from proto_models import quote_pb2, company_info_pb2

# Create a quote object
quote = quote_pb2.Quote()
quote.symbol = "AAPL"
quote.quote.price = 150.25

# Serialize to bytes
data = quote.SerializeToString()

# Deserialize from bytes
new_quote = quote_pb2.Quote()
new_quote.ParseFromString(data)
```

## Available Models

- `chart_pb2` - Chart data models
- `company_info_pb2` - Company information models
- `option_chain_pb2` - Options chain models
- `quote_pb2` - Quote data models
- `wheelstrategy_pb2` - Wheel strategy models
