Metadata-Version: 2.4
Name: grft-test-simple-car-repository-e2e
Version: 0.2.0
Summary: Simple car repository
Author: graftcode
License: MIT
Project-URL: Homepage, https://github.com/grft-dev/grft-test-simple-car-repository
Project-URL: Repository, https://github.com/grft-dev/grft-test-simple-car-repository
Keywords: car,repository,in-memory,sample,e2e
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

# grft-test-simple-car-repository

Simple car in-memory repository.

## Install

```bash
pip install grft-test-simple-car-repository-e2e
```

## Usage

```python
from grft_test_simple_car import SimpleCar
from grft_test_simple_car_repository import InMemorySimpleCarRepository

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

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