[ 源代码: python-returns ]
软件包:python3-returns(0.25.0-1)
python3-returns 的相关链接
Debian 的资源:
下载源码包 python-returns:
- [python-returns_0.25.0-1.dsc]
- [python-returns_0.25.0.orig.tar.gz]
- [python-returns_0.25.0-1.debian.tar.xz]
维护小组:
外部的资源:
- 主页 [github.com]
相似软件包:
Make your functions return something meaningful, typed, and safe
Basically, the answer is that returns provides useful abstractions that solve some problems every developer has:
* ``Maybe`` helps to work with None in a type-safe way * ``Result`` helps to work with exceptions in a type-safe way * ``IO`` helps to separate pure code from impure code to make your architecture better * ``Future`` helps to write await free code * ``RequiresContext`` helps to inject dependencies in a very readable, explicit, type-safe, and clean way * ``Pipelines`` can be used independently or together with the types above to create complex, declarative, and type-safe data pipelines
On top of that ``returns`` provides useful interfaces that allows you to switch implementation on the fly. For example, you can write code that works the same way for sync and async execution flows. While being fully type-safe at the same time.
And you can write your own primitives that will solve any other problem you can possible have based on ``returns`` existing or your custom interfaces.
其他与 python3-returns 有关的软件包
|
|
|
|
-
- dep: python3
- 交互式高级面向对象语言(默认 python3 版本)
-
- dep: python3-typing-extensions (>= 4.0)
- Backported and Experimental Type Hints for Python