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. Setting the "maxlen" property to < 1 makes for an infinite length list, constrained only by system resourecs.

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)

append

Alias of "bump"

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: list):

...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("RecentFiles", 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("RecentFiles", self.recent_files.items)

"RecentFiles" above is the setting key. It's just a string value. It could be anything.

on_change callback

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("RecentFiles", defaultValue = []))
self.recent_files.on_change(self.save_recent_files)

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

Another complete example:

from functools import partial
from qt_extras.settings import init_settings, get_setting, set_setting
from recent_items_list import RecentFilesList

class Window(QMainWindow):

	def __init__(self):
		super().__init__()
		init_settings("ZenSoSo", __package__)
		self.recent_files = RecentFilesList(get_setting("RecentFiles", []))
		recent_files.list.on_change(self.sync_recent_files)
		self.menuOpen_Recent.aboutToShow.connect(self.fill_recent_file_menu)

	def sync_recent_files(self, items):
		set_setting("RecentFiles", items)

	@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.2.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.2-py2.py3-none-any.whl (15.2 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: recent_items_list-1.2.2.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.2.tar.gz
Algorithm Hash digest
SHA256 2c62e9c2fef2ebdb902aac23bb0a35301adbd85ae06b4d9b719d61db5ca23c57
MD5 0cc3c28b462947cbeff1d1e34509d449
BLAKE2b-256 eea20ee4657b8aa6f1fe55fc69abcfeab3d80296522428a92db9acb00a4dcc65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for recent_items_list-1.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ff40878327bcdcef422a095741f5babf7b6ed0789cf57dd9b45542092dfb7acd
MD5 4fe72c85f92051aea9c3948cd63a5680
BLAKE2b-256 79d122aeaf3044f023fe03433871ba07fca5b7473c30bcc9b8e671a2c51e3add

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.2.2 This release

2 files

1.2.1

2 files

1.2.0

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