Metadata-Version: 2.1
Name: ringbuf
Version: 1.0.1
Summary: A fast, lock free, ring buffer for Python.
Home-page: https://github.com/elijahr/ringbuf
Author: Elijah Shaw-Rutschman
Author-email: elijahr@gmail.com
License: UNKNOWN
Description: # ringbuf
        A fast, lock free, ring buffer for Python, written in Cython and based on [ContiguousRingbuffer](https://github.com/tlouwers/embedded/blob/master/ContiguousBuffer/ContiguousRingbuffer.hpp) by tlouwers.
        
        ![build_status](https://travis-ci.org/elijahr/ringbuf.svg?branch=master)
        
        ## Installation
        
        ```shell
        pip install ringbuf
        ```
        
        ## Usage
        
        See the [tests](https://github.com/elijahr/aiolo/blob/master/tests/main.py).
        
        ## Supported platforms
        
        Travis CI tests with the following configurations:
        * Ubuntu 18.04 Bionic Beaver + [CPython3.6, CPython3.7, CPython3.8, PyPy7.3.0 (3.6.9)]
        * OS X + [CPython3.6, CPython3.7, CPython3.8, PyPy7.3.0 (3.6.9)]
        
        ## Contributing
        
        Pull requests are welcome, please file any issues you encounter.
        
Platform: UNKNOWN
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown
Provides-Extra: test
