Skip to main content

Service objects designed with OOP in mind.

Project description

Stories build pypi

Service objects designed with OOP in mind.

Documentation | Source Code | Task Tracker

A paragraph of text explaining the goal of the library…

Pros

  • A feature
  • B feature
  • etc

Example

A line of text explaining snippet below…

>>> from dataclasses import dataclass
>>> from typing import Callable
>>> from stories import Story, I, State
>>> from app.repositories import load_order, load_customer, create_payment

>>> @dataclass
... class Purchase(Story):
...     I.find_order
...     I.find_customer
...     I.check_balance
...     I.persist_payment
...
...     def find_order(self, state):
...         state.order = self.load_order(state.order_id)
...
...     def find_customer(self, state):
...         state.customer = self.load_customer(state.customer_id)
...
...     def check_balance(self, state):
...         if not state.order.affordable_for(state.customer):
...             raise Exception
...
...     def persist_payment(self, state):
...         state.payment = self.create_payment(
...             order_id=state.order_id, customer_id=state.customer_id
...         )
...
...     load_order: Callable
...     load_customer: Callable
...     create_payment: Callable

>>> purchase = Purchase(
...     load_order=load_order,
...     load_customer=load_customer,
...     create_payment=create_payment,
... )

>>> state = State(order_id=1, customer_id=1)

>>> purchase(state)

>>> state  # doctest: +SKIP

>>> state.payment.was_received()
False

Questions

If you have any questions, feel free to create an issue in our Task Tracker. We have the question label exactly for this purpose.

Enterprise support

If you have an issue with any version of the library, you can apply for a paid enterprise support contract. This will guarantee you that no breaking changes will happen to you. No matter how old version you're using at the moment. All necessary features and bug fixes will be backported in a way that serves your needs.

Please contact proofit404@gmail.com if you're interested in it.

License

stories library is offered under the two clause BSD license.

— ⭐ —

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stories-5.1.0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

stories-5.1.0-py2.py3-none-any.whl (8.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file stories-5.1.0.tar.gz.

File metadata

  • Download URL: stories-5.1.0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.4 Linux/5.15.0-1020-azure

File hashes

Hashes for stories-5.1.0.tar.gz
Algorithm Hash digest
SHA256 d0d9fc95dca4b1ac1ee49f5b6ffb93222a0b2cad12f10a5434b225cdb029babf
MD5 aa19507c85566f72c8c75dd554f49b8b
BLAKE2b-256 b1d1253f190cc4ae0eb64498ee2304b75cc09c0bb8690bc3e94279d036c9e38a

See more details on using hashes here.

File details

Details for the file stories-5.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: stories-5.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.4 Linux/5.15.0-1020-azure

File hashes

Hashes for stories-5.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b67ef87ddfa918e9baeb8fd0da4e0410c09127ca7181a8d929e58f9bea6645a9
MD5 65733788087571bd7cca8e953fc0eaa8
BLAKE2b-256 616eeff24c7917a7d5b2834c18ab0216f812a9417b31292834bbbf775b5d8773

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page