Package python3-module-first: Information
Source package: python3-module-first
Version: 2.0.2-alt1
Build time: Oct 1, 2022, 08:27 PM in the task #307723
Category: Development/Python3
Report package bugHome page: https://pypi.org/project/first/
License: MIT
Summary: The function you always missed in Python: return the first value of an iterable
Description:
first is an MIT-licensed Python package with a simple function that returns the first true value from an iterable, or None if there is none. If you need more power, you can also supply a key function that is used to judge the truth value of the element or a default value if None doesn't fit your use case. N.B. I'm using the term "true" consistently with Python docs for any() and all() - it means that the value evaluates to true like: True, 1, "foo", or [None]. But not: None, False, [], or 0. In JavaScript, they call this "truthy".
Maintainer: Anton Zhukharev