DDD base framework for python
Project description
DDD Api Gateway Framework
Installation
From source code:
python setup.py install
From pypi:
pip install ddd-api-gateway
Usage
from ddd_base.value_object import ValueObject class TheValueObject(ValueObject): def __init__(self, name): super(TheValueObject, self).__init__() self.name = name def __eq__(self, other): if not isinstance(other, ValueObject): return NotImplemented return self.name == other.name def test_value_object_compare(): a_value_object = TheValueObject("name") b_value_object = TheValueObject("name") assert a_value_object.same_as(b_value_object)
Changelog
0.0.7
- Route specification need ssl
0.0.6
- Add endpoint hostname property
0.0.5
- Expose exceptions message
0.0.4
- Expose exceptions
0.0.3
- Add entity repository
0.0.2
- Adjust for travis test and cover all percentage
0.0.1
- Initial public release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ddd-api-gateway-0.0.7.tar.gz
(6.8 kB
view hashes)