Skip to main content

recent_items_list

Provides finite length Last Recently Used (LRU) caches.

RecentItemsList

A class which stores any type of object.

Appending or "bump"-ing items adds them to the beginning of the list. If the "maxlen" number of items already exist, the last item is dropped from the list.

By default, only the last 10 items are kept in the list. You can change this by setting the "maxlen" property on an instance of RecentItemsList. Setting the "maxlen" property to < 1 makes for an infinite length list, constrained only by system resourecs.

The two most used methods are "bump" and "remove".

bump

Bump the given item to the beginning of the list. If the given item is not in the list, inserts it at the beginning.

recent_items.bump(thing)

remove

Removes the given item if it is in the list. Does nothing if the item is not in the list.

recent_items.remove(thing)

on_change

Registers a callback which is run every time the list changes. The callback must have the signature:

def item_list_changed(self, items):

...where "item_list_changed" is an example function name.

clear

Removes all items from the list

RecentFilesList

This class extends RecentItemsList, providing a "prune" function to clear the list only of files which don't exist.

prune

Removes files which no longer exist.

Example:

This is a simple implementation of a "Recent Files" menu in PyQt.

Instantiation:

def __init__(self):
	self.recent_files = RecentFilesList(self.settings.value(
		"recent_files", defaultValue = []))
	self.menuOpen_Recent.aboutToShow.connect(self.fill_recent_file_menu)

Filling the Qt menu:

@pyqtSlot()
def fill_recent_file_menu(self):
	self.menuOpen_Recent.clear()
	actions = []
	for filename in self.recent_files:
		action = QAction(filename, self)
		action.triggered.connect(partial(self.load_file, filename))
		actions.append(action)
	self.menuOpen_Recent.addActions(actions)

Opening a file:

def open(self, filename):
	self.recent_files.bump(filename)
	[...]

Saving to a QSettings instance:

self.settings.setValue("recent_files", self.recent_files.items)

An alternate method of saving the most recent file list without having to explicitly save the changes, is to provide a callback which will be called whenever the list changes, which saves the list to QSettings:

self.recent_files = RecentFilesList(self.settings.value(
	"recent_files", defaultValue = []))
self.recent_files.on_change(self.save_recent_files)

def save_recent_files(self, items):
	self.settings.setValue("recent_files", items)

Another complete example:

from functools import partial
from recent_items_list import RecentFilesList

VENDOR_NAME = 'ZenSoSo'

def recent_files():
	def sync(items):
		settings().setValue("recent_files", items)
	if not hasattr(recent_files, 'list'):
		recent_files.list = RecentFilesList(settings().value("recent_files", []))
		recent_files.list.on_change(sync)
	return recent_files.list

def settings():
	if not hasattr(settings, 'object'):
		settings.object = QSettings(VENDOR_NAME, __package__)
	return settings.object

class Window(QMainWindow):

	def __init__(self):
		super().__init__()
		self.menuOpen_Recent.aboutToShow.connect(self.fill_recent_file_menu)

	@pyqtSlot()
	def fill_recent_file_menu(self):
		self.menuOpen_Recent.clear()
		actions = []
		for filename in recent_files().prune():
			action = QAction(filename, self)
			action.triggered.connect(partial(self.load_file, filename))
			actions.append(action)
		self.menuOpen_Recent.addActions(actions)

	def load_file(self, filename):
		self.recent_files.bump(filename)

Download files

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

Source Distribution

recent_items_list-1.2.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

recent_items_list-1.2.0-py2.py3-none-any.whl (15.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file recent_items_list-1.2.0.tar.gz.

File metadata

  • Download URL: recent_items_list-1.2.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for recent_items_list-1.2.0.tar.gz
Algorithm Hash digest
SHA256 973dc6197224e292511633f8d81d5ad4add0ea9c7edd969863f69d695b3d2039
MD5 77514bd71c20bcdf75658b59c0853591
BLAKE2b-256 1d8aaec6ee891f732160c10e78e386d9c781b96b0e49bbc45b00c4410b262592

See more details on using hashes here.

File details

Details for the file recent_items_list-1.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for recent_items_list-1.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d0363c0f00ba4d9d9350be21b563680863baef11397accc4ec16e28519ba3ac2
MD5 0dda7acb3485aa998584421df3c05160
BLAKE2b-256 4365b53a561c4081a678c792cb3aba7a4b3175d8857673c1109bb96f0c200486

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.2

2 files

1.2.1

2 files

This release

1.2.0 This release

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page