sus2790 / Nueue

An easier way to create the queue.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nueue

An easier way to create the queue.

$ pip install Nueue

Example

from Nueue.queue import Queue

queue = Queue()

queue.add("Nya! Ichi Ni San Nyaa Arigato!")
queue.add("พี่ชอบหนูที่สุดเลย")

previous = queue.previous()
# None
now_playing = queue.current_item()
# Nya! Ichi Ni San Nyaa Arigato!
next_ = queue.next()
# พี่ชอบหนูที่สุดเลย

That's it, have fun! (?

About

An easier way to create the queue.

License:MIT License


Languages

Language:Python 100.0%