effect
effect copied to clipboard
effect isolation in Python, to facilitate more purely functional code
Results
12
effect issues
Sort by
recently updated
recently updated
newest added
Implements #86 Just for demo purpose, see [my comment here](https://github.com/python-effect/effect/issues/86#issuecomment-2456577779).
Hello, I’m currently implementing an async performer, starting from a synchronous version. In the synchronous setup, I have: ```python result = sync_perform(mock_dispatcher, main_sequence(logger)) ``` This approach uses a pure logic...