Quick way to split and zip a list?

This page summarizes the projects mentioned and recommended in the original post on /r/learnpython

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
WorkOS - The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com
featured
  • more-itertools

    More routines for operating on iterables, beyond itertools

  • from itertools import islice # Copied from the more-itertools library (MIT license) # https://github.com/more-itertools/more-itertools def batched(iterable, n): "Batch data into lists of length n. The last batch may be shorter." # batched('ABCDEFG', 3) --> ABC DEF G if n < 1: raise ValueError('n must be at least one') it = iter(iterable) while (batch := list(islice(it, n))): yield batch

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Any good resource on design patterns with examples in Python?

    1 project | /r/learnpython | 9 Dec 2023
  • Wikifunctions

    1 project | news.ycombinator.com | 6 Dec 2023
  • Top GitHub Resources to Level Up Your Python game

    9 projects | dev.to | 27 Nov 2023
  • Introduction

    1 project | dev.to | 8 Sep 2023
  • Ask HN: Where do I find good code to read?

    22 projects | news.ycombinator.com | 24 Aug 2023