A simple cStringIO based FIFO, implemented as a circular buffer
Project description
======
csFIFO
======
A simple FIFO that includes non destructive inspection, based on a cStringIO circular buffer
--------------------------------------------------------------------------------------------
**License:**
Creative Commons CC-BY-SA 3.0, see README.TXT
**Changes:**
| 1.0 Original Release
**Known Bugs:**
The indexing does not work correctly with some forms of negative index
**Credit:**
All credit to the posting by Cameron on StackOverflow, here:
http://stackoverflow.com/questions/10917581/efficient-fifo-queue-for-arbitrarily-sized-chunks-of-bytes-in-python
**Usage:**
import csFIFO
f1=csFIFO()
data="Message"
f1.write(data)
size=2
data=f1.read(size)
f1.purge()
f2=csFIFO(max_size=1024*1024)
f2.write("Hello World")
if not f2.isEmpty():
#Print some stats
print f2
#Non-destructive inspection
print f2[:5]
print f2[4:8]
print f2[-5:]
Dependencies:
::
None that I know of
csFIFO
======
A simple FIFO that includes non destructive inspection, based on a cStringIO circular buffer
--------------------------------------------------------------------------------------------
**License:**
Creative Commons CC-BY-SA 3.0, see README.TXT
**Changes:**
| 1.0 Original Release
**Known Bugs:**
The indexing does not work correctly with some forms of negative index
**Credit:**
All credit to the posting by Cameron on StackOverflow, here:
http://stackoverflow.com/questions/10917581/efficient-fifo-queue-for-arbitrarily-sized-chunks-of-bytes-in-python
**Usage:**
import csFIFO
f1=csFIFO()
data="Message"
f1.write(data)
size=2
data=f1.read(size)
f1.purge()
f2=csFIFO(max_size=1024*1024)
f2.write("Hello World")
if not f2.isEmpty():
#Print some stats
print f2
#Non-destructive inspection
print f2[:5]
print f2[4:8]
print f2[-5:]
Dependencies:
::
None that I know of
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distributions
csFIFO-1.0-py2.7.egg
(9.4 kB
view hashes)
csFIFO-1.0-py2.6.egg
(9.4 kB
view hashes)