Skip to main content

Simplest Queue package to make a fixed size queue on your platform and apps. You just need to import and use FixQueue-based queues.

Project description

FixQueue

Simplest Queue package to make a fixed size queue on your platform and apps.

You just need to import and use FixQueue-based queues.

Install

pip install fixqueue

Basic Example

from FixQueue import FixQueue

if __name__ == “__main__” :

fq = FixQueue(2) # 2 means queue size

fq.append(‘a’)

fq.append(‘b’)

print (fq) # [‘a’, ‘b’]

fq.append(‘c’)

print (fq) # [‘b’, ‘c’]

print (fq.pop()) # b

print (fq) # [‘c’]

Project details


Download files

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

Source Distribution

FixQueue-0.1.1.tar.gz (1.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page