Metadata-Version: 2.4
Name: sdn-test-simple-car-repository
Version: 1.0.0
Summary: Simple vehicle repository
Author: jwaszczynski
License: MIT
Project-URL: Homepage, https://github.com/yourname/sdn-test-simple-car
Project-URL: Repository, https://github.com/yourname/sdn-test-simple-car
Keywords: vehicles,repository,in-memory,synchronous,sample
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sdn-test-simple-car>=0.1.0
Dynamic: license-file

# sdn-test-simple-car-repository

Simple vehicle in memory repository.

## Install
```bash
pip install sdn-test-simple-car-repository
```

## Usage
```python
from sdn_test_simple_car_repository import InMemorySimpleCarRepository
from sdn_test_simple_car import SimpleCar

repo = InMemorySimpleCarRepository()
car = SimpleCar('BMW', 'M3', 2023)
repo.add(car)

all_cars = repo.get_all()
print(f"Total cars: {len(all_cars)}")
```

