
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Service objects designed with OOP in mind.
Documentation | Source Code | Task Tracker
A paragraph of text explaining the goal of the library…
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
If you have any questions, feel free to create an issue in our Task Tracker. We have the question label exactly for this purpose.
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.
stories
library is offered under the two clause BSD license.
— ⭐ —
FAQs
Service objects designed with OOP in mind.
We found that stories demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.