Skip to main content

numpy_ringbuffer

Build Status codecov

Ring (aka circular) buffers backed by a numpy array, supporting:

  • Operations from collections.deque
    • b.append(val)
    • b.appendleft(val)
    • b.extend(val)
    • b.extendleft(val)
    • b.pop(val)
    • b.popleft(val)
  • The collections.Sequence protocol (unoptimized)
  • C-side unwrapping into an array with np.array(b)
  • Arbitrary element dtypes, including extra dimensions like RingBuffer(N, dtype=(int, 3))

For example:

import numpy as np
from numpy_ringbuffer import RingBuffer

r = RingBuffer(capacity=4, dtype=np.bool)
r.append(True)
r.appendleft(False)
print(np.array(r))  # array([False, True])

Download files

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

Source Distribution

numpy_ringbuffer-0.2.2.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

numpy_ringbuffer-0.2.2-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file numpy_ringbuffer-0.2.2.tar.gz.

File metadata

  • Download URL: numpy_ringbuffer-0.2.2.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for numpy_ringbuffer-0.2.2.tar.gz
Algorithm Hash digest
SHA256 1b55e1ff473e3d8807067a3ea42b8d6957f6b6239fc0516527252280edb18fa6
MD5 533a8b79130757d8d6a92978ec81a09f
BLAKE2b-256 3a0b08bc9f01677daa58059325e6a1efb18e79c93fbe5d3ffe910349bfbbdea0

See more details on using hashes here.

File details

Details for the file numpy_ringbuffer-0.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for numpy_ringbuffer-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8393d82d0a75b4fce2890674a278c28289bc9e10fe0428c24bc1e1176cfe18d7
MD5 eb8ed21405bbc594978afeffca05bf82
BLAKE2b-256 39fd78135ec3fd81fe9ebb44bfc5ae92c2120729008c96fd2be6c2af0dca8126

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

1 file

0.1.1

1 file

0.1.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page