Skip to main content

Friendly sequences made in Python with :love:

Project description

Friendly Sequences

Inspired by Scala Sequence class [1] and iterchain [2], but with good typing support.

Examples

from friendly_sequences import Seq

assert (
           Seq[int]((1, 2))
           .zip(Seq[int]((3, 4)))
           .flat_map(lambda x: x)
           .filter(lambda x: x != 2)
           .sort()
           .map(str)
           .fold(lambda left, right: f"{left}{right}", "")
       ) == "134"

[1] https://alvinalexander.com/scala/seq-class-methods-examples-syntax/ [2] https://github.com/Evelyn-H/iterchain

Project details


Download files

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

Source Distribution

friendly_sequences-1.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

friendly_sequences-1.1-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

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