s-celles / numpy-buffer

A Python NumPy implementation of ring buffer (aka circular buffer)
BSD 3-Clause "New" or "Revised" License
7 stars 2 forks source link

merge with others #2

Open s-celles opened 9 years ago

s-celles commented 9 years ago

this project should probably be merged with some others.

see for example https://scimusing.wordpress.com/2013/10/25/ring-buffers-in-pythonnumpy/

http://pastebin.com/ZLcfd9GX https://github.com/belevtsoff/rdaclient.py/blob/master/src/ringbuffer.py https://gist.github.com/mtambos/aa435461084b5c0025d1 https://github.com/belevtsoff/rdaclient.py/blob/master/src/ringbuffer.py

eric-wieser commented 8 years ago

I've just built another one of these at https://github.com/eric-wieser/numpy_ringbuffer, with the primary advantage that it's published on PyPI (#4)

s-celles commented 8 years ago

Thanks @eric-wieser Good to know